svn commit: samba r3902 - in branches/SAMBA_4_0/source/libcli/raw: .

metze at samba.org metze at samba.org
Mon Nov 22 08:15:27 GMT 2004


Author: metze
Date: 2004-11-22 08:15:27 +0000 (Mon, 22 Nov 2004)
New Revision: 3902

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

Log:
fix compiler warnings

metze

Modified:
   branches/SAMBA_4_0/source/libcli/raw/raweas.c


Changeset:
Modified: branches/SAMBA_4_0/source/libcli/raw/raweas.c
===================================================================
--- branches/SAMBA_4_0/source/libcli/raw/raweas.c	2004-11-22 07:59:14 UTC (rev 3901)
+++ branches/SAMBA_4_0/source/libcli/raw/raweas.c	2004-11-22 08:15:27 UTC (rev 3902)
@@ -57,7 +57,7 @@
   put a ea_list into a pre-allocated buffer - buffer must be at least
   of size ea_list_size()
 */
-void ea_put_list(char *data, uint_t num_eas, struct ea_struct *eas)
+void ea_put_list(void *data, uint_t num_eas, struct ea_struct *eas)
 {
 	int i;
 	uint32_t ea_size;
@@ -83,7 +83,7 @@
   put a chained ea_list into a pre-allocated buffer - buffer must be
   at least of size ea_list_size()
 */
-void ea_put_list_chained(char *data, uint_t num_eas, struct ea_struct *eas)
+void ea_put_list_chained(void *data, uint_t num_eas, struct ea_struct *eas)
 {
 	int i;
 



More information about the samba-cvs mailing list