/*
*******************************************************************************
*
-* Copyright (C) 1999-2005, International Business Machines
+* Copyright (C) 1999-2007, International Business Machines
* Corporation and others. All Rights Reserved.
*
*******************************************************************************
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,
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) {
}
}
-