PERFORCE change 95359 for review

John Birrell jb at FreeBSD.org
Sat Apr 15 22:45:55 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=95359

Change 95359 by jb at jb_freebsd2 on 2006/04/15 22:45:20

	Change a return value to match the function return type.

Affected files ...

.. //depot/projects/dtrace/src/contrib/opensolaris/tools/ctf/cvt/ctf.c#2 edit

Differences ...

==== //depot/projects/dtrace/src/contrib/opensolaris/tools/ctf/cvt/ctf.c#2 (text) ====

@@ -1196,7 +1196,7 @@
 	    (rc = inflate(&zstr, Z_NO_FLUSH)) != Z_STREAM_END ||
 	    (rc = inflateEnd(&zstr)) != Z_OK) {
 		warning("CTF decompress zlib error %s\n", zError(rc));
-		return (NULL);
+		return (0);
 	}
 
 	debug(3, "reflated %lu bytes to %lu, pointer at %d\n",


More information about the p4-projects mailing list