Update of /cvsroot/alsa/alsa-kernel/core/oss
In directory usw-pr-cvs1:/tmp/cvs-serv20523/core/oss

Modified Files:
        mixer_oss.c 
Log Message:
C99 structure initializers - second set of changes

Index: mixer_oss.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/core/oss/mixer_oss.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- mixer_oss.c 14 Feb 2002 17:40:31 -0000      1.7
+++ mixer_oss.c 15 Aug 2002 12:13:06 -0000      1.8
@@ -383,17 +383,17 @@
 static struct file_operations snd_mixer_oss_f_ops =
 {
 #ifndef LINUX_2_2
-       owner:          THIS_MODULE,
+       .owner =        THIS_MODULE,
 #endif
-       open:           snd_mixer_oss_open,
-       release:        snd_mixer_oss_release,
-       ioctl:          snd_mixer_oss_ioctl,
+       .open =         snd_mixer_oss_open,
+       .release =      snd_mixer_oss_release,
+       .ioctl =        snd_mixer_oss_ioctl,
 };
 
 static snd_minor_t snd_mixer_oss_reg =
 {
-       comment:        "mixer",
-       f_ops:          &snd_mixer_oss_f_ops,
+       .comment =      "mixer",
+       .f_ops =        &snd_mixer_oss_f_ops,
 };
 
 /*



-------------------------------------------------------
This sf.net email is sponsored by: OSDN - Tired of that same old
cell phone?  Get a new here for FREE!
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
_______________________________________________
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog

Reply via email to