# HG changeset patch # User Richard M. Stallman # Date 891656528 0 # Node ID b33f3f6d7f7415ad119851e2c49f01aa035602d7 # Parent f998f239f77b6c72de8c9ccc536e8835993d850f (put_entries): Use %ld. diff -r f998f239f77b -r b33f3f6d7f74 lib-src/etags.c --- 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