Skip to content

Commit a395e34

Browse files
committed
don't send empty string to QDebug.
1 parent 8b004f3 commit a395e34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

googletakeout.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@
4242

4343

4444
void GoogleTakeoutFormat::takeout_fatal(const QString& message) {
45-
fatal(FatalMsg() << "" << message);
45+
fatal(FatalMsg() << message);
4646
}
4747

4848
void GoogleTakeoutFormat::takeout_warning(const QString& message) {
49-
Warning() << "" << message;
49+
Warning() << message;
5050
}
5151

5252
/* create a waypoint from late7/lone7 and optional metadata */

0 commit comments

Comments
 (0)