summaryrefslogtreecommitdiff
path: root/libs/fst
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-12-30 15:06:58 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-12-30 15:06:58 +0000
commitb15f48fb30023523b521c687e63ed2ea000b6009 (patch)
tree3837f34b22c470c16223fd2e49a60c2c3536a5dd /libs/fst
parent0218522b7269d150041e0d4fd605a209ec28bb0e (diff)
fix C99 compliance issue for winegcc
git-svn-id: svn://localhost/ardour2/branches/3.0@8384 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/fst')
-rw-r--r--libs/fst/vstwin.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/libs/fst/vstwin.c b/libs/fst/vstwin.c
index 5016fa12bf..cdc9e3af07 100644
--- a/libs/fst/vstwin.c
+++ b/libs/fst/vstwin.c
@@ -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 );