]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/samples/uresb/uresb.c
ICU-57166.0.1.tar.gz
[apple/icu.git] / icuSources / samples / uresb / uresb.c
index db2d57896ae823522abc1a73b771d8ba2c0aa3ff..e1930503146e37ad47910fcb3da17b61f71c5548 100644 (file)
@@ -1,7 +1,7 @@
 /*
 *******************************************************************************
 *
-*   Copyright (C) 1999-2005, International Business Machines
+*   Copyright (C) 1999-2007, International Business Machines
 *   Corporation and others.  All Rights Reserved.
 *
 *******************************************************************************
@@ -58,7 +58,7 @@ void reportError(UErrorCode *status);
 static UChar *quotedString(const UChar *string);
 void printOutBundle(UFILE *out, UResourceBundle *resource, int32_t indent, UErrorCode *status);
 void printIndent(UFILE *out, int32_t indent);
-void printHex(UFILE *out, const uint8_t *what);
+void printHex(UFILE *out, const int8_t *what);
 
 static UOption options[]={
     UOPTION_HELP_H,
@@ -178,8 +178,8 @@ void printIndent(UFILE *out, int32_t indent) {
     u_fprintf(out, "%s", inchar);
 }
 
-void printHex(UFILE *out, const uint8_t *what) {
-  u_fprintf(out, "%02X", *what);
+void printHex(UFILE *out, const int8_t *what) {
+  u_fprintf(out, "%02X", (uint8_t)*what);
 }
 
 static UChar *quotedString(const UChar *string) {
@@ -378,4 +378,3 @@ const UChar *getErrorName(UErrorCode errorNumber) {
     }
 
 }
-