From 5d0db93b7f02c3e0d9117197119044e67297dddb Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Tue, 25 Mar 2008 13:54:31 +0000 Subject: [PATCH] add missing semicolon git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/branches/Branch-2.2@6686 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/src/stored/stored.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); -- 2.39.5