Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Aug 2008 08:44:31 GMT
From:      Konrad Jankowski <konrad@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 147698 for review
Message-ID:  <200808180844.m7I8iVBo087312@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=147698

Change 147698 by konrad@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) {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200808180844.m7I8iVBo087312>