From: Richard M. Stallman Date: Sat, 4 Apr 1998 02:22:08 +0000 (+0000) Subject: (put_entries): Use %ld. X-Git-Tag: emacs-20.3~1719 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fb220ea4eeb4068c062abee9eadb1195b1b4bd7c;p=emacs.git (put_entries): Use %ld. --- diff --git a/lib-src/etags.c b/lib-src/etags.c index e2eb55c9f69..7217d75f9fc 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c @@ -1512,10 +1512,10 @@ put_entries (node) 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