diff options
author | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-04-06 02:19:00 +0000 |
---|---|---|
committer | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-04-06 02:19:00 +0000 |
commit | d37d41a108cf99950c334932f91e5cea5ce23e8d (patch) | |
tree | a7fbfea8eb23e2f61104bb34256f8321247b8a75 /code/qcommon | |
parent | e32d29a6db0b593e4e61188ed3ffc1449605ebc9 (diff) | |
download | ioquake3-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')
-rw-r--r-- | code/qcommon/q_shared.c | 2 |
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++; } |