ipmid: Change .H -> .hpp

Change-Id: Ia1ed05a533736105909717b86f16274b30d36401
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/apphandler.cpp b/apphandler.cpp
index 4a77cfa..bfc821e 100644
--- a/apphandler.cpp
+++ b/apphandler.cpp
@@ -1,6 +1,6 @@
 #include "apphandler.h"
 #include "ipmid-api.h"
-#include "ipmid.H"
+#include "ipmid.hpp"
 #include <stdio.h>
 #include <string.h>
 #include <stdint.h>
@@ -26,7 +26,7 @@
 }__attribute__((packed)) ipmi_device_id_t;
 
 //---------------------------------------------------------------------
-// Called by Host on seeing a SMS_ATN bit set. Return a hardcoded 
+// Called by Host on seeing a SMS_ATN bit set. Return a hardcoded
 // value of 0x2 indicating we need Host read some data.
 //-------------------------------------------------------------------
 ipmi_ret_t ipmi_app_get_msg_flags(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
@@ -39,8 +39,8 @@
     printf("IPMI APP GET MSG FLAGS returning with [bit:2] set\n");
 
 	// From IPMI spec V2.0 for Get Message Flags Command :
-	// bit:[1] from LSB : 1b = Event Message Buffer Full. 
-	// Return as 0 if Event Message Buffer is not supported, 
+	// bit:[1] from LSB : 1b = Event Message Buffer Full.
+	// Return as 0 if Event Message Buffer is not supported,
 	// or when the Event Message buffer is disabled.
 	// TODO. For now. assume its not disabled and send "0x2" anyway: