diff options
-rw-r--r-- | src/common/core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/core.c b/src/common/core.c index 4504370cf..bb7bd5cdc 100644 --- a/src/common/core.c +++ b/src/common/core.c @@ -150,8 +150,8 @@ const char* get_svn_revision(void) else { // Bin File format - fgets(line, sizeof(line), fp); // Get the name - fgets(line, sizeof(line), fp); // Get the entries kind + (void)fgets(line, sizeof(line), fp); // Get the name + (void)fgets(line, sizeof(line), fp); // Get the entries kind if(fgets(line, sizeof(line), fp)) // Get the rev numver { snprintf(rA_svn_version, sizeof(rA_svn_version), "%d", atoi(line)); |