mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
64-bit fixes
This commit is contained in:
parent
5917e95953
commit
8c7b4c825f
1 changed files with 4 additions and 4 deletions
|
@ -20,7 +20,7 @@ pushsrc(int type, char *ptr) /* new input source */
|
|||
srcp->type = type;
|
||||
srcp->sp = ptr;
|
||||
if (dbg > 1) {
|
||||
printf("\n%3d ", srcp - src);
|
||||
printf("\n%3d ", (long)(srcp - src));
|
||||
switch (srcp->type) {
|
||||
case File:
|
||||
printf("push file %s\n", ((Infile *)ptr)->fname);
|
||||
|
@ -52,7 +52,7 @@ popsrc(void) /* restore an old one */
|
|||
if (srcp <= src)
|
||||
ERROR "too many inputs popped" FATAL;
|
||||
if (dbg > 1) {
|
||||
printf("%3d ", srcp - src);
|
||||
printf("%3ld ", (long)(srcp - src));
|
||||
switch (srcp->type) {
|
||||
case File:
|
||||
printf("pop file\n");
|
||||
|
@ -187,7 +187,7 @@ dodef(struct symtab *stp) /* collect args and switch input to defn */
|
|||
ap->argstk[i] = "";
|
||||
if (dbg)
|
||||
for (i = 0; i < argcnt; i++)
|
||||
printf("arg %d.%d = <%s>\n", ap-args, i+1, ap->argstk[i]);
|
||||
printf("arg %ld.%d = <%s>\n", (long)(ap-args), i+1, ap->argstk[i]);
|
||||
argfp = ap;
|
||||
pushsrc(Macro, stp->s_val.p);
|
||||
}
|
||||
|
@ -387,7 +387,7 @@ do_thru(void) /* read one line, make into a macro expansion */
|
|||
ap->argstk[i] = "";
|
||||
if (dbg)
|
||||
for (i = 0; i < argcnt; i++)
|
||||
printf("arg %d.%d = <%s>\n", ap-args, i+1, ap->argstk[i]);
|
||||
printf("arg %ld.%d = <%s>\n", (long)(ap-args), i+1, ap->argstk[i]);
|
||||
if (strcmp(ap->argstk[0], ".PE") == 0) {
|
||||
thru = 0;
|
||||
thrudef = 0;
|
||||
|
|
Loading…
Reference in a new issue