From 7746e331cff74ce640345f916da366b043475d86 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Sun, 24 Jan 2016 22:37:39 +0200 Subject: [PATCH] Remove unused PORTAL_STATUSMAX enum value --- src/include/utils/portal.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/include/utils/portal.h b/src/include/utils/portal.h index 3e74c7406f..7de5b89738 100644 --- a/src/include/utils/portal.h +++ b/src/include/utils/portal.h @@ -100,8 +100,7 @@ typedef enum PortalStatus PORTAL_QUEUE, /* portal is queued (cannot delete it) */ PORTAL_ACTIVE, /* portal is running (can't delete it) */ PORTAL_DONE, /* portal is finished (don't re-run it) */ - PORTAL_FAILED, /* portal got error (can't re-run it) */ - PORTAL_STATUSMAX + PORTAL_FAILED /* portal got error (can't re-run it) */ } PortalStatus; /* -- GitLab