Module Name: src
Committed By: christos
Date: Sun Feb 6 18:28:22 UTC 2011
Modified Files:
src/usr.bin/xlint/lint1: mkops
Log Message:
use unsigned char instead of uint8_t, easier for portability
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/usr.bin/xlint/lint1/mkops
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/xlint/lint1/mkops
diff -u src/usr.bin/xlint/lint1/mkops:1.4 src/usr.bin/xlint/lint1/mkops:1.5
--- src/usr.bin/xlint/lint1/mkops:1.4 Sat Feb 5 14:10:40 2011
+++ src/usr.bin/xlint/lint1/mkops Sun Feb 6 13:28:22 2011
@@ -1,5 +1,5 @@
#!/bin/sh -
-# $NetBSD: mkops,v 1.4 2011/02/05 19:10:40 christos Exp $
+# $NetBSD: mkops,v 1.5 2011/02/06 18:28:22 christos Exp $
#
# Copyright (c) 2011 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -70,7 +70,7 @@
printf("mod_t modtab[NOPS];\n");
printf("static const struct {\n");
printf("\tmod_t\tm;\n");
- printf("\tuint8_t\tok;\n");
+ printf("\tunsigned char\tok;\n");
printf("} imods[] = {\n");
}
}