summaryrefslogtreecommitdiff
path: root/source3/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
commit51e5001cba2ae438674517371d29ae7f78c0a52a (patch)
tree4eb8c9058ee5055eec0f86cdd0f4feb50a1dd426 /source3/profile
parent56736616d873605c7a75f375067c9d316bf57539 (diff)
downloadsamba-51e5001cba2ae438674517371d29ae7f78c0a52a.tar.gz
r24842: Fix build warning.
Guenther (This used to be commit 205ef6ab3e9332a2a4a4f775c2cdddbcd3ec739d)
Diffstat (limited to 'source3/profile')
-rw-r--r--source3/profile/profile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/profile/profile.c b/source3/profile/profile.c
index 20748e8f221..cf2bd9ee36a 100644
--- a/source3/profile/profile.c
+++ b/source3/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 {