summaryrefslogtreecommitdiff
path: root/nuttx/fs
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-03-03 00:23:08 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-03-03 00:23:08 +0000
commit47781b59270b503f7caebba731b79b04f66773af (patch)
treeef8db9758096343c31fff7411bba10a0d201bc2a /nuttx/fs
parent9e6bb4573162644dc83a51d96f3ffc99f74bae30 (diff)
downloadpx4-nuttx-47781b59270b503f7caebba731b79b04f66773af.tar.gz
px4-nuttx-47781b59270b503f7caebba731b79b04f66773af.tar.bz2
px4-nuttx-47781b59270b503f7caebba731b79b04f66773af.zip
Remove quad_t
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4447 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/fs')
-rw-r--r--nuttx/fs/nfs/xdr_subs.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/fs/nfs/xdr_subs.h b/nuttx/fs/nfs/xdr_subs.h
index 97bb24aee..336fbc587 100644
--- a/nuttx/fs/nfs/xdr_subs.h
+++ b/nuttx/fs/nfs/xdr_subs.h
@@ -1,5 +1,5 @@
/****************************************************************************
- * fs/nfs/rpc_types.h
+ * fs/nfs/xdr_subs.h
* Definitions for Sun RPC Version 2, from
* "RPC: Remote Procedure Call Protocol Specification" RFC1057
*
@@ -58,7 +58,7 @@
*
* To simplify the implementation, we use ntohl/htonl even on big-endian
* machines, and count on them being `#define'd away. Some of these
- * might be slightly more efficient as quad_t copies on a big-endian,
+ * might be slightly more efficient as int64_t copies on a big-endian,
* but we cannot count on their alignment anyway.
*/
@@ -92,8 +92,8 @@
}
#define fxdr_hyper(f) \
- ((((u_quad_t)ntohl(((u_int32_t *)(f))[0])) << 32) | \
- (u_quad_t)(ntohl(((u_int32_t *)(f))[1])))
+ ((((uint64_t)ntohl(((u_int32_t *)(f))[0])) << 32) | \
+ (uint64_t)(ntohl(((u_int32_t *)(f))[1])))
#define txdr_hyper(f, t) { \
((u_int32_t *)(t))[0] = htonl((u_int32_t)((f) >> 32)); \