[xiph-commits] r6861 - trunk/paranoia-III/interface

pjones at dactyl.lonelymoon.com pjones
Fri Jun 25 13:56:58 PDT 2004


Author: pjones
Date: Fri Jun 25 13:56:58 2004
New Revision: 6861

Modified:
trunk/paranoia-III/interface/utils.h
Log:
Add semicolons after empty labels in swich statements, to conform with C99.
This also fixes building with gcc >= 3.4 .


Modified: trunk/paranoia-III/interface/utils.h
===================================================================
--- trunk/paranoia-III/interface/utils.h	2004-06-25 14:49:24 UTC (rev 6860)
+++ trunk/paranoia-III/interface/utils.h	2004-06-25 18:14:43 UTC (rev 6861)
@@ -111,7 +111,9 @@
d->errorbuf=catstring(d->errorbuf,s);
break;
case CDDA_MESSAGE_FORGETIT:
+      ;
default:
+      ;
}
}
}
@@ -126,7 +128,9 @@
d->messagebuf=catstring(d->messagebuf,s);
break;
case CDDA_MESSAGE_FORGETIT:
+      ;
default:
+      ;
}
}
}
@@ -168,7 +172,9 @@
}
break;
case CDDA_MESSAGE_FORGETIT:
+      ;
default:
+      ;
}
}
if(malloced)free(buffer);
@@ -204,7 +210,9 @@
}
break;
case CDDA_MESSAGE_FORGETIT:
+      ;
default:
+      ;
}
}
if(malloced)free(buffer);



More information about the commits mailing list