summaryrefslogtreecommitdiffstats
path: root/source/profile
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2007-02-26 16:37:19 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:18:11 -0500
commitbc04004c182b114749d8e33edcf835efb252d35d (patch)
treede483ff5d4a3a109a6a5e488096b8a234f371732 /source/profile
parent5889f588ee9bee6ceb6e6d517f6e69e42d55a574 (diff)
downloadsamba-bc04004c182b114749d8e33edcf835efb252d35d.tar.gz
samba-bc04004c182b114749d8e33edcf835efb252d35d.tar.xz
samba-bc04004c182b114749d8e33edcf835efb252d35d.zip
r21543: Fix 64bit build warning.
Guenther
Diffstat (limited to 'source/profile')
-rw-r--r--source/profile/profile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/profile/profile.c b/source/profile/profile.c
index fc22e07fa98..30b06492545 100644
--- a/source/profile/profile.c
+++ b/source/profile/profile.c
@@ -230,7 +230,7 @@ BOOL profile_setup(BOOL rdonly)
}
if (shm_ds.shm_segsz != sizeof(*profile_h)) {
- DEBUG(0,("WARNING: profile size is %d (expected %d). Deleting\n",
+ DEBUG(0,("WARNING: profile size is %d (expected %lu). Deleting\n",
(int)shm_ds.shm_segsz, sizeof(*profile_h)));
if (shmctl(shm_id, IPC_RMID, &shm_ds) == 0) {
goto again;