summaryrefslogtreecommitdiff
path: root/source/profile
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2007-08-31 15:01:50 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:30:27 -0500
commit205ef6ab3e9332a2a4a4f775c2cdddbcd3ec739d (patch)
treea111d7b8809b4785c2195bebf323c4360dc5e26d /source/profile
parentce7c816083db6fc844b936a14dd593fe1ef07374 (diff)
downloadsamba-205ef6ab3e9332a2a4a4f775c2cdddbcd3ec739d.tar.gz
r24842: Fix 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 20748e8f221..cf2bd9ee36a 100644
--- a/source/profile/profile.c
+++ b/source/profile/profile.c
@@ -251,7 +251,7 @@ BOOL profile_setup(struct messaging_context *msg_ctx, BOOL rdonly)
if (shm_ds.shm_segsz != sizeof(*profile_h)) {
DEBUG(0,("WARNING: profile size is %d (expected %d). Deleting\n",
- (int)shm_ds.shm_segsz, sizeof(*profile_h)));
+ (int)shm_ds.shm_segsz, (int)sizeof(*profile_h)));
if (shmctl(shm_id, IPC_RMID, &shm_ds) == 0) {
goto again;
} else {