Fixed timeout completion code

According to IPMI v2.0 timeout code is 0xc3.

Not tested
ccTimeout is used only in responseTimeout() and responseTimeout is never called.

Signed-off-by: Karol Niczyj <karol.niczyj@intel.com>
Change-Id: Iecf79724dac64d61dc08fce08daee578a540dbf9
diff --git a/include/ipmid/api-types.hpp b/include/ipmid/api-types.hpp
index 0782a9a..518db03 100644
--- a/include/ipmid/api-types.hpp
+++ b/include/ipmid/api-types.hpp
@@ -368,7 +368,7 @@
 constexpr Cc ccBusy = 0xC0;
 constexpr Cc ccInvalidCommand = 0xC1;
 constexpr Cc ccInvalidCommandOnLun = 0xC2;
-constexpr Cc ccTimeout = 0xC2;
+constexpr Cc ccTimeout = 0xC3;
 constexpr Cc ccOutOfSpace = 0xC4;
 constexpr Cc ccInvalidReservationId = 0xC5;
 constexpr Cc ccReqDataTruncated = 0xC6;