PERFORCE change 147698 for review
Konrad Jankowski
konrad at FreeBSD.org
Mon Aug 18 08:44:32 UTC 2008
http://perforce.freebsd.org/chv.cgi?CH=147698
Change 147698 by konrad at vspredator on 2008/08/18 08:43:47
Fix unitialized variable.
Affected files ...
.. //depot/projects/soc2008/konrad_collation/test/sort/sort.c#4 edit
Differences ...
==== //depot/projects/soc2008/konrad_collation/test/sort/sort.c#4 (text+ko) ====
@@ -69,7 +69,7 @@
char *p;
int ch;
int num_lines; /* Number of lines read from input. */
- int xfrm; /* Do we use strxfrm? */
+ int xfrm = 0; /* Do we use strxfrm? */
while ((ch = getopt(argc, argv, "xh")) != -1) {
switch (ch) {
More information about the p4-projects
mailing list