(svn r19132) -Codechange: No need to end a line with ;;.

This commit is contained in:
alberth
2010-02-14 16:31:35 +00:00
parent ac65c41509
commit 33a96b5ef3
13 changed files with 14 additions and 14 deletions

View File

@@ -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;