diff lib-src/etags.c @ 21355:b33f3f6d7f74

(put_entries): Use %ld.
author Richard M. Stallman <rms@gnu.org>
date Sat, 04 Apr 1998 02:22:08 +0000
parents 2bf465c6cc6b
children 5370881bfbd6
line wrap: on
line diff
--- a/lib-src/etags.c	Sat Apr 04 02:21:01 1998 +0000
+++ b/lib-src/etags.c	Sat Apr 04 02:22:08 1998 +0000
@@ -1512,10 +1512,10 @@
   if (!CTAGS)
     {
       if (node->name != NULL)
-	fprintf (tagf, "%s\177%s\001%d,%d\n",
+	fprintf (tagf, "%s\177%s\001%d,%ld\n",
 		 node->pat, node->name, node->lno, node->cno);
       else
-	fprintf (tagf, "%s\177%d,%d\n",
+	fprintf (tagf, "%s\177%d,%ld\n",
 		 node->pat, node->lno, node->cno);
     }
   else