[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/SignlessTypes/ccc.c
Reid Spencer
reid at x10sys.com
Sun Mar 4 11:14:44 PST 2007
Changes in directory llvm-test/SingleSource/UnitTests/SignlessTypes:
ccc.c updated: 1.2 -> 1.3
---
Log message:
Terminate output with newline.
---
Diffs of the changes: (+1 -1)
ccc.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm-test/SingleSource/UnitTests/SignlessTypes/ccc.c
diff -u llvm-test/SingleSource/UnitTests/SignlessTypes/ccc.c:1.2 llvm-test/SingleSource/UnitTests/SignlessTypes/ccc.c:1.3
--- llvm-test/SingleSource/UnitTests/SignlessTypes/ccc.c:1.2 Wed Jan 17 20:10:04 2007
+++ llvm-test/SingleSource/UnitTests/SignlessTypes/ccc.c Sun Mar 4 13:14:27 2007
@@ -48,7 +48,7 @@
sh = (short)-1;
ush = (unsigned short) -1;
- printf("%d %hd %hu", TestVal, sh, ush);
+ printf("%d %hd %hu\n", TestVal, sh, ush);
return TestVal;
}
More information about the llvm-commits
mailing list