Skip to content
This repository was archived by the owner on Jul 14, 2019. It is now read-only.

Commit 5547030

Browse files
Carlo Marcelo Arenas BelonLior Amram
authored andcommitted
avoid extra line for logger
1 parent fbddede commit 5547030

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mysql_dumper.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
RIBS is an infrastructure for building great SaaS applications (but not
44
limited to).
55
6-
Copyright (C) 2012,2013 Adap.tv, Inc.
6+
Copyright (C) 2012,2013,2014 Adap.tv, Inc.
77
88
RIBS is free software: you can redistribute it and/or modify
99
it under the terms of the GNU Lesser General Public License as published by
@@ -291,7 +291,7 @@ int mysql_dumper_dump(struct mysql_login_info *mysql_login_info, const char *out
291291
LOGGER_INFO("%s: %zu records, %zu skipped", tablename, count, num_rows_errors);
292292
/* check for mysql errors */
293293
if (mysql_err != MYSQL_NO_DATA) {
294-
LOGGER_ERROR("mysql_stmt_fetch returned an error (code=%d)\n", mysql_err);
294+
LOGGER_ERROR("mysql_stmt_fetch returned an error (code=%d)", mysql_err);
295295
err = -1;
296296
}
297297
dumper_close_writer:

0 commit comments

Comments
 (0)