diff options
author | Luigi Yucheng LIU <luigi.liu@laposte.net> | 2014-08-28 21:21:39 +0800 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-08-28 19:20:25 +0200 |
commit | b62213babf39e1d9e13b4fdc9488521f9189a47c (patch) | |
tree | 65d16ec84d78376e2b542f973662d8431a9aa440 | |
parent | 0cf76508cdee9992eb2d5c61ba1233e093f56135 (diff) | |
download | ODR-AudioEnc-b62213babf39e1d9e13b4fdc9488521f9189a47c.tar.gz ODR-AudioEnc-b62213babf39e1d9e13b4fdc9488521f9189a47c.tar.bz2 ODR-AudioEnc-b62213babf39e1d9e13b4fdc9488521f9189a47c.zip |
Bugfix on debugging information.
Fixes bug that do call database.disp () without being in debug mode.
-rw-r--r-- | src/mot-encoder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mot-encoder.cpp b/src/mot-encoder.cpp index 96c5f41..561406b 100644 --- a/src/mot-encoder.cpp +++ b/src/mot-encoder.cpp @@ -385,7 +385,7 @@ int main(int argc, char *argv[]) } } -#ifdef DEBUG +#if DEBUG slides_history.disp_database(); #endif |