summaryrefslogtreecommitdiff
path: root/src/files.cc
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2014-06-26 18:42:56 +0200
committerBardur Arantsson <bardur@scientician.net>2014-06-26 18:42:56 +0200
commite03d07212ee1a2077bf7c02e86f24a9e3bc766ec (patch)
tree417e0c0ff00f5a6a0a86e9e3a147f9a80ea6bcc5 /src/files.cc
parent33bcbd13586471c8a1a3ce89389885d7a72e50c3 (diff)
Fix a couple of Clang warnings
Diffstat (limited to 'src/files.cc')
-rw-r--r--src/files.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/files.cc b/src/files.cc
index 919d71bd..ddfd5045 100644
--- a/src/files.cc
+++ b/src/files.cc
@@ -4867,7 +4867,7 @@ void display_scores(int from, int to)
void show_highclass(int building)
{
- register int i = 0, j, m = 0;
+ int i = 0, j, m = 0;
int pr, pc, clev, al;
high_score the_score;
char buf[1024], out_val[256];
@@ -4987,7 +4987,7 @@ void show_highclass(int building)
*/
void race_score(int race_num)
{
- register int i = 0, j, m = 0;
+ int i = 0, j, m = 0;
int pr, clev, lastlev;
high_score the_score;
char buf[1024], out_val[256], tmp_str[80];