diff libinterp/dldfcn/audioinfo.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 1cc6bcc5b90c
line wrap: on
line diff
--- a/libinterp/dldfcn/audioinfo.cc	Thu Sep 19 15:13:48 2013 +0300
+++ b/libinterp/dldfcn/audioinfo.cc	Thu Sep 19 15:18:25 2013 +0300
@@ -58,7 +58,7 @@
   retval.assign ("Artist", sf_get_string (file, SF_STR_ARTIST));
   retval.assign ("Comment", sf_get_string (file, SF_STR_COMMENT));
 #else
-  error("sndfile not found on your system and thus audioinfo is not functional")
+  error("sndfile not found on your system and thus audioinfo is not functional");
 #endif
   return octave_value(retval);
 }