Update of /cvsroot/alsa/alsa-lib/aserver
In directory sc8-pr-cvs1:/tmp/cvs-serv26168

Modified Files:
        aserver.c 
Log Message:
Art Haas <[EMAIL PROTECTED]>
C99 initializers cleanup


Index: aserver.c
===================================================================
RCS file: /cvsroot/alsa/alsa-lib/aserver/aserver.c,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- aserver.c   18 Mar 2003 18:00:05 -0000      1.56
+++ aserver.c   26 Jul 2003 16:24:11 -0000      1.57
@@ -518,9 +518,9 @@
 }
 
 transport_ops_t pcm_shm_ops = {
-       open: pcm_shm_open,
-       cmd: pcm_shm_cmd,
-       close: pcm_shm_close,
+       .open   = pcm_shm_open,
+       .cmd    = pcm_shm_cmd,
+       .close  = pcm_shm_close,
 };
 
 static int ctl_handler(waiter_t *waiter, unsigned short events)
@@ -712,9 +712,9 @@
 }
 
 transport_ops_t ctl_shm_ops = {
-       open: ctl_shm_open,
-       cmd: ctl_shm_cmd,
-       close: ctl_shm_close,
+       .open   = ctl_shm_open,
+       .cmd    = ctl_shm_cmd,
+       .close  = ctl_shm_close,
 };
 
 static int snd_client_open(client_t *client)



-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01
_______________________________________________
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog

Reply via email to