diff options
author | unknown <heikki@hundin.mysql.fi> | 2004-06-01 16:41:13 +0300 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2004-06-01 16:41:13 +0300 |
commit | 389e8bec492a5cf1a8cd8bb54f8d14518aaa925a (patch) | |
tree | 147befe9edfdfbb042c5f1fa911db20d4e09dafe | |
parent | bab2231f7112e9808a1429c1409cc610131323b5 (diff) | |
download | mariadb-git-389e8bec492a5cf1a8cd8bb54f8d14518aaa925a.tar.gz |
fil0fil.c:
Add missing newlines in fprintfs
innobase/fil/fil0fil.c:
Add missing newlines in fprintfs
-rw-r--r-- | innobase/fil/fil0fil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/innobase/fil/fil0fil.c b/innobase/fil/fil0fil.c index ab3125c4b65..3b033655856 100644 --- a/innobase/fil/fil0fil.c +++ b/innobase/fil/fil0fil.c @@ -2572,7 +2572,7 @@ fil_load_single_table_tablespace( fprintf(stderr, "InnoDB: Error: could not open single-table tablespace file\n" -"InnoDB: %s!", filepath); +"InnoDB: %s!\n", filepath); ut_free(filepath); @@ -2587,7 +2587,7 @@ fil_load_single_table_tablespace( fprintf(stderr, "InnoDB: Error: could not measure the size of single-table tablespace file\n" -"InnoDB: %s!", filepath); +"InnoDB: %s!\n", filepath); os_file_close(file); ut_free(filepath); |