Avoid a compilation warning. clang-format files.

This commit is contained in:
Markus F.X.J. Oberhumer
2017-05-27 12:30:02 +02:00
parent 6e541a432f
commit 4c74d16795
4 changed files with 12 additions and 13 deletions
+8 -8
View File
@@ -137,14 +137,14 @@ Packer *PackMaster::visitAllPackers(visit_func_t func, InputFile *f, const optio
void *user) {
Packer *p = NULL;
#define D(Klass) \
ACC_BLOCK_BEGIN \
Klass *const kp = new Klass(f); \
if (o->debug.debug_level) \
fprintf(stderr, "visitAllPackers: (ver=%d, fmt=%3d) %s\n", \
kp->getVersion(), kp->getFormat(), #Klass); \
if ((p = func(kp, user))) \
return p; \
#define D(Klass) \
ACC_BLOCK_BEGIN \
Klass *const kp = new Klass(f); \
if (o->debug.debug_level) \
fprintf(stderr, "visitAllPackers: (ver=%d, fmt=%3d) %s\n", kp->getVersion(), \
kp->getFormat(), #Klass); \
if ((p = func(kp, user)) != NULL) \
return p; \
ACC_BLOCK_END
// note: order of tries is important !