lib: add internal object pool API and use it; adapt plugins/tests
[babeltrace.git] / plugins / ctf / common / btr / btr.h
index c4f400911159059b8b12b70268d5879acba02480..dbfef72a69a79b6f81023d8a9942edd5544b0d14 100644 (file)
@@ -53,7 +53,7 @@
  */
 enum bt_btr_status {
        /** Out of memory. */
-       BT_BTR_STATUS_ENOMEM =  -5,
+       BT_BTR_STATUS_ENOMEM =          -5,
        /**
         * The binary stream reader reached the end of the user-provided
         * buffer, but data is still needed to finish decoding the
@@ -66,10 +66,10 @@ enum bt_btr_status {
        BT_BTR_STATUS_EOF =             1,
 
        /** Invalid argument. */
-       BT_BTR_STATUS_INVAL =   -3,
+       BT_BTR_STATUS_INVAL =           -3,
 
        /** General error. */
-       BT_BTR_STATUS_ERROR =   -1,
+       BT_BTR_STATUS_ERROR =           -1,
 
        /** Everything okay. */
        BT_BTR_STATUS_OK =              0,
This page took 0.023462 seconds and 4 git commands to generate.