Fix IPMI `Out of space` response error code.

As per IPMI spec `out of space` error code is 0xC4.

Tested:
IPMI responseOutOfSpace() returns correct string "Out of space".

Signed-off-by: Sharad Yadav <sharady@nvidia.com>
Change-Id: I134b2f0afbf23dcd083f6642d7e64f68546c4603
diff --git a/include/ipmid/api-types.hpp b/include/ipmid/api-types.hpp
index b4b70e3..0782a9a 100644
--- a/include/ipmid/api-types.hpp
+++ b/include/ipmid/api-types.hpp
@@ -369,7 +369,7 @@
 constexpr Cc ccInvalidCommand = 0xC1;
 constexpr Cc ccInvalidCommandOnLun = 0xC2;
 constexpr Cc ccTimeout = 0xC2;
-constexpr Cc ccOutOfSpace = 0xC2;
+constexpr Cc ccOutOfSpace = 0xC4;
 constexpr Cc ccInvalidReservationId = 0xC5;
 constexpr Cc ccReqDataTruncated = 0xC6;
 constexpr Cc ccReqDataLenInvalid = 0xC7;