Author: gd
Date: 2007-08-31 15:01:50 +0000 (Fri, 31 Aug 2007)
New Revision: 24842

WebSVN: 
http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=24842

Log:
Fix build warning.

Guenther

Modified:
   branches/SAMBA_3_2/source/profile/profile.c
   branches/SAMBA_3_2_0/source/profile/profile.c


Changeset:
Modified: branches/SAMBA_3_2/source/profile/profile.c
===================================================================
--- branches/SAMBA_3_2/source/profile/profile.c 2007-08-31 14:58:26 UTC (rev 
24841)
+++ branches/SAMBA_3_2/source/profile/profile.c 2007-08-31 15:01:50 UTC (rev 
24842)
@@ -251,7 +251,7 @@
 
        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 {

Modified: branches/SAMBA_3_2_0/source/profile/profile.c
===================================================================
--- branches/SAMBA_3_2_0/source/profile/profile.c       2007-08-31 14:58:26 UTC 
(rev 24841)
+++ branches/SAMBA_3_2_0/source/profile/profile.c       2007-08-31 15:01:50 UTC 
(rev 24842)
@@ -251,7 +251,7 @@
 
        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 {

Reply via email to