tabbing
[iotcloud.git] / version2 / src / C / TableStatus.cc
index b8753505519f34af9dfa840aaf8d12dc11c8522c..f61a6aebff06f5869b27dd1e11ee605f881976cf 100644 (file)
@@ -1,12 +1,12 @@
 #include "TableStatus.h"
 #include "ByteBuffer.h"
 
-Entry * TableStatus_decode(Slot * slot, ByteBuffer * bb) {
-       int maxslots=bb->getInt();
+Entry *TableStatus_decode(Slot *slot, ByteBuffer *bb) {
+       int maxslots = bb->getInt();
        return new TableStatus(slot, maxslots);
 }
 
-void TableStatus::encode(ByteBuffer * bb) {
+void TableStatus::encode(ByteBuffer *bb) {
        bb->put(TypeTableStatus);
        bb->putInt(maxslots);
 }