mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-24 11:41:58 +00:00
64-bit fixes
This commit is contained in:
parent
30d57c7489
commit
98f7b73f93
3 changed files with 8 additions and 8 deletions
|
@ -19,7 +19,7 @@ void pushsrc(int type, char *ptr) /* new input source */
|
|||
srcp->type = type;
|
||||
srcp->sp = ptr;
|
||||
if (dbg > 1) {
|
||||
printf("\n%3d ", srcp - src);
|
||||
printf("\n%3ld ", (long)(srcp - src));
|
||||
switch (srcp->type) {
|
||||
case File:
|
||||
printf("push file %s\n", ((Infile *)ptr)->fname);
|
||||
|
@ -47,7 +47,7 @@ void 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");
|
||||
|
@ -98,7 +98,7 @@ void dodef(tbl *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->cval);
|
||||
}
|
||||
|
|
|
@ -21,7 +21,7 @@ void pushsrc(int type, char *ptr) /* new input source */
|
|||
srcp->type = type;
|
||||
srcp->sp = ptr;
|
||||
if (dbg) {
|
||||
printf("\n%3d ", srcp - src);
|
||||
printf("\n%3ld ", (long)(srcp - src));
|
||||
switch (srcp->type) {
|
||||
case File:
|
||||
printf("push file %s\n", ptr);
|
||||
|
@ -52,7 +52,7 @@ void popsrc(void) /* restore an old one */
|
|||
if (srcp <= src)
|
||||
ERROR "too many inputs popped" FATAL;
|
||||
if (dbg) {
|
||||
printf("%3d ", srcp - src);
|
||||
printf("%3ld ", (srcp - src));
|
||||
switch (srcp->type) {
|
||||
case File:
|
||||
printf("pop file\n");
|
||||
|
@ -172,7 +172,7 @@ void dodef(Obj *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->val);
|
||||
}
|
||||
|
@ -371,7 +371,7 @@ void 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], ".G2") == 0) {
|
||||
thru = 0;
|
||||
thrudef = 0;
|
||||
|
|
|
@ -26,7 +26,7 @@ void pushsrc(int type, char *ptr) /* new input source */
|
|||
srcp->type = type;
|
||||
srcp->sp = ptr;
|
||||
if (dbg > 1) {
|
||||
printf("\n%3d ", (int) (srcp - src));
|
||||
printf("\n%3d ", (int)(srcp - src));
|
||||
switch (srcp->type) {
|
||||
case File:
|
||||
printf("push file %s\n", ((Infile *)ptr)->fname);
|
||||
|
|
Loading…
Reference in a new issue