summaryrefslogtreecommitdiff
path: root/libs/ardour/vst_info_file.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-02-25 05:37:55 +0100
committerRobin Gareus <robin@gareus.org>2014-02-25 14:57:57 +0100
commit993ed5670175870c5b5930860e82db0efe158820 (patch)
tree1b3f6c0ceef4e98a03ef998e74e8e5ff40487c64 /libs/ardour/vst_info_file.cc
parent1c402f943f1f1c460f099f91aed011967f883bee (diff)
prepare standalone VST scanner tool.. part one
Diffstat (limited to 'libs/ardour/vst_info_file.cc')
-rw-r--r--libs/ardour/vst_info_file.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/vst_info_file.cc b/libs/ardour/vst_info_file.cc
index ee103bf91e..04e18f7593 100644
--- a/libs/ardour/vst_info_file.cc
+++ b/libs/ardour/vst_info_file.cc
@@ -237,7 +237,7 @@ vstfx_write_info_file (FILE* fp, vector<VSTInfo *> *infos)
* plugins contained in this shell
*/
vstfx_write_info_block(fp, *x);
- fprintf( fp, "%d\n", infos->size() - 1 );
+ fprintf( fp, "%d\n", (int)infos->size() - 1 );
++x;
/* Now write out the info for each plugin */
for (; x != infos->end(); ++x) {