diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-09-28 02:03:49 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-09-28 02:03:49 +0000 |
commit | 45708a703340f8687589ec96cda4ce0d0ce398c4 (patch) | |
tree | 2dd09ac96a68ab6fbcfebb1e37b6b744f6be4fb2 /sunrpc | |
parent | bcc956f24e78622adf0912a914ee8f57baa3d6c7 (diff) |
Actually, quad_t and u_quad_t are better choices.
Diffstat (limited to 'sunrpc')
-rw-r--r-- | sunrpc/rpc_parse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sunrpc/rpc_parse.c b/sunrpc/rpc_parse.c index c4285d945f..d6eda42309 100644 --- a/sunrpc/rpc_parse.c +++ b/sunrpc/rpc_parse.c @@ -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: |