]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix compiler warning
authorKern Sibbald <kern@sibbald.com>
Sat, 12 Jul 2014 09:14:21 +0000 (11:14 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 12 Jul 2014 09:14:21 +0000 (11:14 +0200)
bacula/src/dird/ua_run.c

index 3ea04a8d9714565fc7beb79d4e46f07573e325e7..b796371a5caa30d4fe81d64328236b09348808d8 100644 (file)
@@ -960,7 +960,7 @@ static bool set_run_context_in_jcr(UAContext *ua, JCR *jcr, run_ctx &rc)
    }
    rc.replace = ReplaceOptions[0].name;
    for (i=0; ReplaceOptions[i].name; i++) {
-      if (ReplaceOptions[i].token == (int)jcr->replace) {
+      if ((int)ReplaceOptions[i].token == (int)jcr->replace) {
          rc.replace = ReplaceOptions[i].name;
       }
    }