From 26baa75a1b47229684749da89ab9b32d54606440 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 30 Dec 2012 11:59:03 +0900 Subject: [PATCH] Remove a stray break. Now qflight mostly works (its results are bogus, but at least it no longer crashes or errors out) --- tools/qflight/source/entities.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/qflight/source/entities.c b/tools/qflight/source/entities.c index d01b7c545..291f7915b 100644 --- a/tools/qflight/source/entities.c +++ b/tools/qflight/source/entities.c @@ -365,7 +365,6 @@ FindEntityWithKeyPair (const char *key, const char *value) break; if (!strcmp (val, value)) return ent; - break; } return 0; }