summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-02-26 20:53:07 +0000
committerDavid Robillard <d@drobilla.net>2009-02-26 20:53:07 +0000
commit6423f13fdf3a5d106e8716aa89dfa39b250ee3f7 (patch)
treef68199f7f27b7162a803e2c57e766d55a6bfe74f
parent3eeea347f2a44305f79bb2220e8c94d6d072d18e (diff)
Fix bad initialization.
git-svn-id: svn://localhost/ardour2/branches/3.0@4686 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--libs/rubberband/src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/rubberband/src/main.cpp b/libs/rubberband/src/main.cpp
index 370ced2c7d..811d64a708 100644
--- a/libs/rubberband/src/main.cpp
+++ b/libs/rubberband/src/main.cpp
@@ -118,7 +118,7 @@ int main(int argc, char **argv)
{ "pitch-hq", 0, 0, '%' },
{ "threads", 0, 0, '@' },
{ "quiet", 0, 0, 'q' },
- { 0, 0, 0 }
+ { 0, 0, 0, '\0' }
};
c = getopt_long(argc, argv, "t:p:d:RPFc:f:T:D:qhV", longOpts, &optionIndex);