From c0cab665e40c0926a2499ff7b22c9bb938ecb12a Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Sun, 3 Dec 2023 04:18:44 -0500 Subject: [PATCH] complete printf format --- tools/msi2lmp/src/SearchAndFill.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/msi2lmp/src/SearchAndFill.c b/tools/msi2lmp/src/SearchAndFill.c index 7a7a1032ea..ce344c5ab6 100644 --- a/tools/msi2lmp/src/SearchAndFill.c +++ b/tools/msi2lmp/src/SearchAndFill.c @@ -93,7 +93,7 @@ void SearchAndFill(struct FrcFieldItem *item) file_pos = ftell(FrcF); if (file_pos < 0) { - fprintf(stderr, "Could not obtain file stream position: ", strerror(errno)); + fprintf(stderr, "Could not obtain file stream position: %s\n", strerror(errno)); exit(2); }