aboutsummaryrefslogtreecommitdiffstats
path: root/code/qcommon/q_shared.c
diff options
context:
space:
mode:
authorthilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-04-06 02:19:00 +0000
committerthilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-04-06 02:19:00 +0000
commitd37d41a108cf99950c334932f91e5cea5ce23e8d (patch)
treea7fbfea8eb23e2f61104bb34256f8321247b8a75 /code/qcommon/q_shared.c
parente32d29a6db0b593e4e61188ed3ffc1449605ebc9 (diff)
downloadioquake3-aero-d37d41a108cf99950c334932f91e5cea5ce23e8d.tar.gz
ioquake3-aero-d37d41a108cf99950c334932f91e5cea5ce23e8d.zip
revert changes to that one as this is not necessary.
git-svn-id: svn://svn.icculus.org/quake3/trunk@1296 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/qcommon/q_shared.c')
-rw-r--r--code/qcommon/q_shared.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/qcommon/q_shared.c b/code/qcommon/q_shared.c
index 6fa6b76..18b71d3 100644
--- a/code/qcommon/q_shared.c
+++ b/code/qcommon/q_shared.c
@@ -599,7 +599,7 @@ void SkipBracedSection (char **program) {
depth = 0;
do {
token = COM_ParseExt( program, qtrue );
- if( *program && token[1] == 0 ) {
+ if( token[1] == 0 ) {
if( token[0] == '{' ) {
depth++;
}