From: Ruediger Meier Date: Mon, 8 Feb 2016 14:38:48 +0000 (+0100) Subject: ipcs: ulong -> unsigned long X-Git-Tag: v2.28-rc1~108^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8fe76cd1711e2e0039e274fd79c859182b97348f;p=thirdparty%2Futil-linux.git ipcs: ulong -> unsigned long Signed-off-by: Ruediger Meier --- diff --git a/sys-utils/ipcutils.h b/sys-utils/ipcutils.h index 26fbbcf4de..444065a839 100644 --- a/sys-utils/ipcutils.h +++ b/sys-utils/ipcutils.h @@ -35,11 +35,11 @@ # define SHM_INFO 14 struct shm_info { int used_ids; - ulong shm_tot; /* total allocated shm */ - ulong shm_rss; /* total resident shm */ - ulong shm_swp; /* total swapped shm */ - ulong swap_attempts; - ulong swap_successes; + unsigned long shm_tot; /* total allocated shm */ + unsigned long shm_rss; /* total resident shm */ + unsigned long shm_swp; /* total swapped shm */ + unsigned long swap_attempts; + unsigned long swap_successes; }; #endif