]> granicus.if.org Git - strace/blobdiff - io.c
replace wimpy get64 by powerful LONG_LONG :-)
[strace] / io.c
diff --git a/io.c b/io.c
index 4bb0002530b5647bbb5b71633be5a41689b37695..d38d1fe3fb5f62eeadc5e6bdac052adf65dbea80 100644 (file)
--- a/io.c
+++ b/io.c
@@ -292,7 +292,7 @@ struct tcb *tcp;
                else
                        printstr(tcp, tcp->u_arg[1], tcp->u_rval);
                tprintf(", %lu, %#llx", tcp->u_arg[2],
-                       get64(tcp->u_arg[3], tcp->u_arg[4]));
+                       LONG_LONG(tcp->u_arg[3], tcp->u_arg[4]));
        }
        return 0;
 }
@@ -306,7 +306,7 @@ struct tcb *tcp;
                tprintf("%ld, ", tcp->u_arg[0]);
                printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
                tprintf(", %lu, %#llx", tcp->u_arg[2],
-                       get64(tcp->u_arg[3], tcp->u_arg[4]));
+                       LONG_LONG(tcp->u_arg[3], tcp->u_arg[4]));
        }
        return 0;
 }