diff libinterp/dldfcn/audioread.cc @ 19525:93f26237c30b

fix some missing semicolons and add some conditional compilation constructs to audio functions * audioinfo.cc, audioread.cc, audiowrite.cc: fix a missing semicolon * audiowrite.cc: prevent building the extension to format table if sndfile is not present
author Vytautas Jančauskas <unaudio@gmail.com>
date Thu, 19 Sep 2013 15:18:25 +0300
parents 2e174b5e7703
children 0ac6a4e7369b
line wrap: on
line diff
--- a/libinterp/dldfcn/audioread.cc	Thu Sep 19 15:13:48 2013 +0300
+++ b/libinterp/dldfcn/audioread.cc	Thu Sep 19 15:18:25 2013 +0300
@@ -109,7 +109,7 @@
   retval(0) = ret_audio;
   retval(1) = info.samplerate;
 #else
-  error("sndfile not found on your system and thus audioread is not functional")
+  error("sndfile not found on your system and thus audioread is not functional");
 #endif
   return octave_value(retval);
 }