diff options
author | hjl <hjl> | 1999-10-28 19:57:59 +0000 |
---|---|---|
committer | hjl <hjl> | 1999-10-28 19:57:59 +0000 |
commit | c790e97b504b04aacb914cc8c434977eed218952 (patch) | |
tree | 03c8ad3a9edd451317d2b4afece7e6e754617382 /tools/rpcgen/rpc_main.c | |
parent | 0f5f4743c303173d51041fd6725f48ba22da04fb (diff) | |
download | nfs-utils-c790e97b504b04aacb914cc8c434977eed218952.tar.gz nfs-utils-c790e97b504b04aacb914cc8c434977eed218952.tar.xz nfs-utils-c790e97b504b04aacb914cc8c434977eed218952.zip |
1. Fix some typos in README.
2. Use int32_t instead of long for rpcgen.
Diffstat (limited to 'tools/rpcgen/rpc_main.c')
-rw-r--r-- | tools/rpcgen/rpc_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/rpcgen/rpc_main.c b/tools/rpcgen/rpc_main.c index bd1a2c0..9b600f3 100644 --- a/tools/rpcgen/rpc_main.c +++ b/tools/rpcgen/rpc_main.c @@ -426,12 +426,12 @@ c_initialize(void) /* add all the starting basic types */ add_type(1,"int"); - add_type(1,"long"); + add_type(1,"int32_t"); add_type(1,"short"); add_type(1,"bool"); add_type(1,"u_int"); - add_type(1,"u_long"); + add_type(1,"u_int32_t"); add_type(1,"u_short"); } |