fix C99 compliance issue for winegcc
authorPaul Davis <paul@linuxaudiosystems.com>
Thu, 30 Dec 2010 15:06:58 +0000 (15:06 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Thu, 30 Dec 2010 15:06:58 +0000 (15:06 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@8384 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/fst/vstwin.c

index 5016fa12bf798a918f2fe7a6dbf1afe23c30b80f..cdc9e3af07114c04d8c394050e25234358dae174 100644 (file)
@@ -121,6 +121,7 @@ DWORD WINAPI gui_event_loop (LPVOID param)
        FST* fst;
        HMODULE hInst;
        HWND window;
+        int i;
 
        gui_thread_id = GetCurrentThreadId ();
 
@@ -223,7 +224,7 @@ again:
                                
                                /* Dispatch messages to send keypresses to the plugin */
                                
-                               for (int i = 0; i < fst->n_pending_keys; ++i) {
+                               for (i = 0; i < fst->n_pending_keys; ++i) {
                                        /* I'm not quite sure what is going on here; it seems
                                           `special' keys must be delivered with WM_KEYDOWN,
                                           but that alphanumerics etc. must use WM_CHAR or
@@ -793,6 +794,8 @@ int fst_load_state (FST * fst, char * filename)
 int fst_save_state (FST * fst, char * filename)
 {
        FILE * f = fopen (filename, "wb");
+        int j;
+
        if (f) {
                int bytelen;
                int numParams = fst->plugin->numParams;
@@ -832,7 +835,7 @@ int fst_save_state (FST * fst, char * filename)
                        numParams = 0;
                }
 
-               for (int j = 0; j < numParams; ++j) {
+               for (j = 0; j < numParams; ++j) {
                        float val;
                        
                        pthread_mutex_lock( &fst->lock );