Skip to content
Commit 22563ca5 authored by Jiří Paleček's avatar Jiří Paleček Committed by Raphael Kubo da Costa
Browse files

Fix missing parentheses around macro

Summary:
Defining macro isRunning by

  #define isRunning() something == something_else

has its problems. Elsewhere in the code, there is
```
if(!isRunning())
```
which expands to `!something == something_else`, not what you would probably mean. I have found this due to a gcc warning.

Reviewers: #kopete, rakuco

Reviewed By: rakuco

Subscribers: rakuco, kopete-devel

Tags: #kopete

Differential Revision: https://phabricator.kde.org/D18445
parent 6d5f864d
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment