summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui_options.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-02-26 17:44:09 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-02-26 17:44:09 +0000
commitc20e55d07a252e4db800454fa361b8cc9a047879 (patch)
tree574d65188ac6bfd685ae12c7eddba791c98cf8a8 /gtk2_ardour/ardour_ui_options.cc
parent54f18f26d4731ebda625776f8850ea8ff4dcc79e (diff)
fix compiler complaints about RCU code; fix a couple of compiler warnings
git-svn-id: svn://localhost/ardour2/trunk@1511 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/ardour_ui_options.cc')
-rw-r--r--gtk2_ardour/ardour_ui_options.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/ardour_ui_options.cc b/gtk2_ardour/ardour_ui_options.cc
index ce03a90197..90e56ee532 100644
--- a/gtk2_ardour/ardour_ui_options.cc
+++ b/gtk2_ardour/ardour_ui_options.cc
@@ -77,7 +77,7 @@ ARDOUR_UI::toggle_send_midi_feedback ()
void
ARDOUR_UI::set_native_file_header_format (HeaderFormat hf)
{
- const char *action;
+ const char *action = 0;
switch (hf) {
case BWF:
@@ -119,7 +119,7 @@ ARDOUR_UI::set_native_file_header_format (HeaderFormat hf)
void
ARDOUR_UI::set_native_file_data_format (SampleFormat sf)
{
- const char* action;
+ const char* action = 0;
switch (sf) {
case FormatFloat: