]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Actually, quad_t and u_quad_t are better choices.
authorUlrich Drepper <drepper@redhat.com>
Tue, 28 Sep 2004 02:03:49 +0000 (02:03 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 28 Sep 2004 02:03:49 +0000 (02:03 +0000)
sunrpc/rpc_parse.c

index c4285d945ff024b0ce0b1f4336525567cd193d02..d6eda423095ff178140a2b64b502ccfba759e6ce 100644 (file)
@@ -622,7 +622,7 @@ get_type (const char **prefixp, const char **typep, defkind dkind)
       (void) peekscan (TOK_INT, &tok);
       break;
     case TOK_HYPER:
-      *typep = "long long";
+      *typep = "quad_t";
       (void) peekscan(TOK_INT, &tok);
       break;
     case TOK_VOID:
@@ -670,7 +670,7 @@ unsigned_dec (const char **typep)
       break;
     case TOK_HYPER:
       get_token (&tok);
-      *typep = "unsigned long long";
+      *typep = "u_quad_t";
       (void) peekscan(TOK_INT, &tok);
       break;
     case TOK_INT: