diff lib-src/etags.c @ 6944:daa29eabfc65

* etags.c (absolute_filename): compare against '\0' instead of NULL.
author Francesco Potortì <pot@gnu.org>
date Mon, 18 Apr 1994 10:54:42 +0000
parents dbfdd66854c9
children 63ab519f7057
line wrap: on
line diff
--- a/lib-src/etags.c	Mon Apr 18 04:03:17 1994 +0000
+++ b/lib-src/etags.c	Mon Apr 18 10:54:42 1994 +0000
@@ -28,7 +28,7 @@
  *	Francesco Potorti` (pot@cnuce.cnr.it) is the current maintainer.
  */
 
-char pot_etags_version[] = "@(#) pot revision number is 10.29";
+char pot_etags_version[] = "@(#) pot revision number is 10.31";
 
 #ifdef MSDOS
 #include <fcntl.h>
@@ -3235,7 +3235,7 @@
 		}
 	      else		/* else (cp == res) */
 		{
-		  if (slashp[3] != NULL)
+		  if (slashp[3] != '\0')
 		    strcpy (cp, slashp + 4);
 		  else
 		    return ".";