Skip to content

Commit

Permalink
use namespaced macros instead of deprecated macros (#1239)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelarguedas authored and mikepurvis committed Nov 19, 2017
1 parent 35d1e0d commit f7c7b3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/rosbag_storage/src/bz2_stream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ void BZ2Stream::read(void* ptr, size_t size) {
case BZ_OK: return;
case BZ_STREAM_END:
if (getUnused() || getUnusedLength() > 0)
logError("unused data already available");
CONSOLE_BRIDGE_logError("unused data already available");
else {
char* unused;
int nUnused;
Expand Down
2 changes: 1 addition & 1 deletion tools/rosbag_storage/src/lz4_stream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ void LZ4Stream::read(void* ptr, size_t size) {
case ROSLZ4_OK: break;
case ROSLZ4_STREAM_END:
if (getUnused() || getUnusedLength() > 0)
logError("unused data already available");
CONSOLE_BRIDGE_logError("unused data already available");
else {
setUnused(lz4s_.input_next);
setUnusedLength(lz4s_.input_left);
Expand Down

0 comments on commit f7c7b3c

Please sign in to comment.