summaryrefslogtreecommitdiff
path: root/include/glibtop/command.h
diff options
context:
space:
mode:
authorBastien Nocera <hadess@src.gnome.org>2003-10-20 20:12:28 +0000
committerBastien Nocera <hadess@src.gnome.org>2003-10-20 20:12:28 +0000
commitb2283f7c79c0291901c1ea616190e4befd544767 (patch)
tree04903a09dccb331aa177e589cfe83b30578f62bf /include/glibtop/command.h
parentadc9a5557816fe47e3b70cb6543fcc3895eaed7b (diff)
downloadlibgtop-b2283f7c79c0291901c1ea616190e4befd544767.tar.gz
- s/u_int64_t/guint64/
Diffstat (limited to 'include/glibtop/command.h')
-rw-r--r--include/glibtop/command.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/glibtop/command.h b/include/glibtop/command.h
index ca5139ff..d6219133 100644
--- a/include/glibtop/command.h
+++ b/include/glibtop/command.h
@@ -69,8 +69,8 @@ typedef union _glibtop_response_union glibtop_response_union;
struct _glibtop_command
{
- u_int64_t command;
- u_int64_t size, data_size;
+ guint64 command;
+ guint64 size, data_size;
char parameter [_GLIBTOP_PARAM_SIZE];
};
@@ -83,7 +83,7 @@ union _glibtop_response_union
struct _glibtop_response
{
int64_t offset;
- u_int64_t size, data_size;
+ guint64 size, data_size;
glibtop_response_union u;
};