From 137b2412cadf25992ec42f2e84ff2525d55b1202 Mon Sep 17 00:00:00 2001 From: Marco van Wieringen Date: Sun, 13 Dec 2009 17:31:53 +0100 Subject: [PATCH] Make SUN C++ compiler stop complaining about enum definition. --- bacula/src/stored/sd_plugins.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bacula/src/stored/sd_plugins.h b/bacula/src/stored/sd_plugins.h index 53ec682c1d..eb488dd12a 100644 --- a/bacula/src/stored/sd_plugins.h +++ b/bacula/src/stored/sd_plugins.h @@ -98,13 +98,13 @@ typedef enum { bwVarJobReport = 1, bwVarVolumeName = 2, bwVarPriority = 3, - bwVarJobLevel = 4, + bwVarJobLevel = 4 } bwVariable; typedef enum { bEventJobStart = 1, - bEventJobEnd = 2, + bEventJobEnd = 2 } bEventType; typedef struct s_bEvent { -- 2.39.5