Avoid signed char subscript
[yaz-moved-to-github.git] / src / odr_util.c
index dc37ca3..2748da4 100644 (file)
@@ -2,7 +2,11 @@
  * Copyright (c) 1995-2004, Index Data
  * See the file LICENSE for details.
  *
- * $Id: odr_util.c,v 1.4 2004-08-11 12:15:38 adam Exp $
+ * $Id: odr_util.c,v 1.6 2004-12-30 00:14:38 adam Exp $
+ */
+/**
+ * \file odr_util.c
+ * \brief Implements various ODR utilities
  */
 #if HAVE_CONFIG_H
 #include <config.h>
@@ -65,7 +69,7 @@ Odr_oid *odr_getoidbystr_nmem(NMEM nmem, const char *str)
     const char *p = str;
     Odr_oid *ret;
 
-    if (!isdigit(*str))
+    if (!isdigit(*(const unsigned char *) str))
        return 0;
     while ((p = strchr(p, '.')))
        num++, p++;