git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@285529
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
i = ao2_iterator_init(c, flags);
- while ( (o = ao2_iterator_next(&i)) ) {
+ while ((o = ao2_iterator_next(&i))) {
... do something on o ...
ao2_ref(o, -1);
}
*
* i = ao2_iterator_init(c, flags);
*
- * while ( (o = ao2_iterator_next(&i)) ) {
+ * while ((o = ao2_iterator_next(&i))) {
* ... do something on o ...
* ao2_ref(o, -1);
* }
i = ao2_iterator_init(mohclasses, 0);
- while ( (c = ao2_iterator_next(&i)) ) {
+ while ((c = ao2_iterator_next(&i))) {
moh_scan_files(c);
ao2_ref(c, -1);
}