diff options
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index 0baf3f7..4381c54 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -842,7 +842,7 @@ QCString argListToString(ArgumentList *al) QCString tempArgListToString(ArgumentList *al) { QCString result; - if (!al || al->count()==0) return result; + if (al==0) return result; result="<"; Argument *a=al->first(); while (a) |