summaryrefslogtreecommitdiff
path: root/lib/libkeynote/keynote.y
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2000-06-13 19:03:12 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2000-06-13 19:03:12 +0000
commit84cf02cb48c8b538772372b640e0e33e4fde37ee (patch)
treedfde671c06a597072ddf778f278583d2c4848436 /lib/libkeynote/keynote.y
parent3c9fabb1f7e715faa41c9dc26928ca8b9d20db25 (diff)
Cast to avoid warning.
Diffstat (limited to 'lib/libkeynote/keynote.y')
-rw-r--r--lib/libkeynote/keynote.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libkeynote/keynote.y b/lib/libkeynote/keynote.y
index 689e49caac0..2dc6225475d 100644
--- a/lib/libkeynote/keynote.y
+++ b/lib/libkeynote/keynote.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: keynote.y,v 1.6 1999/10/26 22:31:38 angelos Exp $ */
+/* $OpenBSD: keynote.y,v 1.7 2000/06/13 19:03:11 angelos Exp $ */
/*
* The author of this code is Angelos D. Keromytis (angelos@dsl.cis.upenn.edu)
*
@@ -824,7 +824,7 @@ isfloatstring(char *s)
int i, point = 0;
for (i = strlen(s) - 1; i >= 0; i--)
- if (!isdigit(s[i]))
+ if (!isdigit((int) s[i]))
{
if (s[i] == '.')
{