aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorRichard M. Stallman1998-04-04 02:22:08 +0000
committerRichard M. Stallman1998-04-04 02:22:08 +0000
commitfb220ea4eeb4068c062abee9eadb1195b1b4bd7c (patch)
treeb62c744ea61338dc3a149296024a44b3d52963ce /lib-src
parent5c0b76c1be12c6397202f7bd2c6537084b1d6f44 (diff)
downloademacs-fb220ea4eeb4068c062abee9eadb1195b1b4bd7c.tar.gz
emacs-fb220ea4eeb4068c062abee9eadb1195b1b4bd7c.zip
(put_entries): Use %ld.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/etags.c4
1 files changed, 2 insertions, 2 deletions
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)
1512 if (!CTAGS) 1512 if (!CTAGS)
1513 { 1513 {
1514 if (node->name != NULL) 1514 if (node->name != NULL)
1515 fprintf (tagf, "%s\177%s\001%d,%d\n", 1515 fprintf (tagf, "%s\177%s\001%d,%ld\n",
1516 node->pat, node->name, node->lno, node->cno); 1516 node->pat, node->name, node->lno, node->cno);
1517 else 1517 else
1518 fprintf (tagf, "%s\177%d,%d\n", 1518 fprintf (tagf, "%s\177%d,%ld\n",
1519 node->pat, node->lno, node->cno); 1519 node->pat, node->lno, node->cno);
1520 } 1520 }
1521 else 1521 else