diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-10-05 16:00:17 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-10-05 16:00:17 +0200 |
commit | 6b35154562eff1e2c31b740655641d49cb26bedd (patch) | |
tree | 7147801671943ff758476e358305bb03ff3995af /src/osc_server.cpp | |
parent | 4bb5ce0be62671f7c5127d969c682d57e971679b (diff) | |
download | osc-graphics-6b35154562eff1e2c31b740655641d49cb26bedd.tar.gz |
cleaned up error reporting
* introduced FFMPEG_ERROR() macro
* fixed recorder's error handling
Diffstat (limited to 'src/osc_server.cpp')
-rw-r--r-- | src/osc_server.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/osc_server.cpp b/src/osc_server.cpp index a9c2eaa..4dbc17f 100644 --- a/src/osc_server.cpp +++ b/src/osc_server.cpp @@ -40,8 +40,7 @@ extern LayerList layers; static void error_handler(int num, const char *msg, const char *path) { - fprintf(stderr, "liblo server error %d in path %s: %s\n", - num, path, msg); + ERROR("liblo server error %d in path %s: %s", num, path, msg); } /* catch any incoming messages and display them. returning 1 means that the |