summaryrefslogtreecommitdiff
path: root/src/newgrf_gui.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2010-02-14 16:31:35 +0000
committeralberth <alberth@openttd.org>2010-02-14 16:31:35 +0000
commit33a96b5ef32499896accf9b32673455be87afe81 (patch)
tree85e59b2b8ec679f1131d597a55fdb65687c21a89 /src/newgrf_gui.cpp
parentac65c415094b01e2f612e720737a633cd822cde0 (diff)
downloadopenttd-33a96b5ef32499896accf9b32673455be87afe81.tar.xz
(svn r19132) -Codechange: No need to end a line with ;;.
Diffstat (limited to 'src/newgrf_gui.cpp')
-rw-r--r--src/newgrf_gui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/newgrf_gui.cpp b/src/newgrf_gui.cpp
index f88bdcd89..96c3d7bea 100644
--- a/src/newgrf_gui.cpp
+++ b/src/newgrf_gui.cpp
@@ -951,8 +951,8 @@ struct NewGRFWindow : public Window {
free(c->info);
c->filename = f->filename == NULL ? NULL : strdup(f->filename);
- c->name = f->name == NULL ? NULL : strdup(f->name);;
- c->info = f->info == NULL ? NULL : strdup(f->info);;
+ c->name = f->name == NULL ? NULL : strdup(f->name);
+ c->info = f->info == NULL ? NULL : strdup(f->info);
c->status = GCS_UNKNOWN;
}
break;