From: Kern Sibbald Date: Tue, 25 Mar 2008 13:54:31 +0000 (+0000) Subject: add missing semicolon X-Git-Tag: Release-2.2.9-b7~39 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5d0db93b7f02c3e0d9117197119044e67297dddb;p=bacula%2Fbacula add missing semicolon git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/branches/Branch-2.2@6686 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/stored/stored.c b/bacula/src/stored/stored.c index cb2c5544da..bcbd606f15 100644 --- a/bacula/src/stored/stored.c +++ b/bacula/src/stored/stored.c @@ -505,7 +505,7 @@ void *device_initialization(void *arg) switch (read_dev_volume_label(dcr)) { case VOL_OK: memcpy(&dev->VolCatInfo, &dcr->VolCatInfo, sizeof(dev->VolCatInfo)); - volume_unused(dcr) /* mark volume "released" */ + volume_unused(dcr); /* mark volume "released" */ break; default: Jmsg1(NULL, M_WARNING, 0, _("Could not mount device %s\n"), dev->print_name());