aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ARCodeFile.cpp4
-rw-r--r--src/Config.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/ARCodeFile.cpp b/src/ARCodeFile.cpp
index 2510b6e..e7780b7 100644
--- a/src/ARCodeFile.cpp
+++ b/src/ARCodeFile.cpp
@@ -60,8 +60,8 @@ bool ARCodeFile::Load()
char linebuf[1024];
while (!feof(f))
{
- if (fgets(linebuf, 1024, f) == NULL)
- printf("Error reading string from file!");
+ if (fgets(linebuf, 1024, f) == nullptr)
+ break;
linebuf[1023] = '\0';
diff --git a/src/Config.cpp b/src/Config.cpp
index 3fb2b26..b39abd0 100644
--- a/src/Config.cpp
+++ b/src/Config.cpp
@@ -119,8 +119,8 @@ void Load()
char entryval[1024];
while (!feof(f))
{
- if (fgets(linebuf, 1024, f) == NULL)
- printf("Error reading string from file!");
+ if (fgets(linebuf, 1024, f) == nullptr)
+ break;
int ret = sscanf(linebuf, "%31[A-Za-z_0-9]=%[^\t\r\n]", entryname, entryval);
entryname[31] = '\0';