comparison 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
comparison
equal deleted inserted replaced
21354:f998f239f77b 21355:b33f3f6d7f74
1510 /* Output this entry */ 1510 /* Output this entry */
1511 1511
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
1522 { 1522 {
1523 if (node->name == NULL) 1523 if (node->name == NULL)