8e053ee7cb
enhancements: - Simple command-line tools to interface with VMware host - Guest OS scripts that can be triggered by the VMware host - Startup script When compiled with X11 support (the default), this release also provides: - GTK+-based GUI to configure time sync, device connections, and scripts - Helper application to interface with the xf86-video-vmware driver, enabling dynamic screen resize
13 lines
506 B
Text
13 lines
506 B
Text
$NetBSD: patch-bi,v 1.1 2008/08/31 06:36:48 scottr Exp $
|
|
|
|
--- lib/unicode/unicodeSimpleTypes.c.orig 2008-08-08 02:01:55.000000000 -0500
|
|
+++ lib/unicode/unicodeSimpleTypes.c
|
|
@@ -2198,7 +2198,7 @@ UnicodeNormalizeEncodingName(const char
|
|
|
|
for (currentResult = result; *encodingName != '\0'; encodingName++) {
|
|
if (isalnum((int) *encodingName)) {
|
|
- *currentResult = tolower(*encodingName);
|
|
+ *currentResult = tolower((int)(*encodingName));
|
|
currentResult++;
|
|
}
|
|
}
|