]> git.alsa-project.org Git - alsa-gobject.git/commitdiff
seq: client_pool: fix indentation
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>
Sun, 21 Jun 2020 13:02:17 +0000 (22:02 +0900)
committer坂本 貴史 <o-takashi@sakamocchi.jp>
Sun, 21 Jun 2020 13:22:10 +0000 (22:22 +0900)
Fixes: 2cb4e8dfccab ("seq: client_pool: add properties")
src/seq/client-pool.c

index c3f658f4036df596eec2d3d650c1838dd4213a94..81ed91605aabc14f2b2c0f18f3ec08e8498bf1ba 100644 (file)
@@ -111,7 +111,7 @@ static void alsaseq_client_pool_class_init(ALSASeqClientPoolClass *klass)
     seq_client_pool_props[SEQ_CLIENT_POOL_PROP_OUTPUT_POOL] =
         g_param_spec_int("output-pool", "output-pool",
                          "The total number of cells in memory pool for output "
-                        "direction.",
+                         "direction.",
                          0, G_MAXINT,
                          0,
                          G_PARAM_READWRITE);
@@ -119,7 +119,7 @@ static void alsaseq_client_pool_class_init(ALSASeqClientPoolClass *klass)
     seq_client_pool_props[SEQ_CLIENT_POOL_PROP_INPUT_POOL] =
         g_param_spec_int("input-pool", "input-pool",
                          "The total number of cells in memory pool for input "
-                        "direction.",
+                         "direction.",
                          0, G_MAXINT,
                          0,
                          G_PARAM_READWRITE);
@@ -127,7 +127,7 @@ static void alsaseq_client_pool_class_init(ALSASeqClientPoolClass *klass)
     seq_client_pool_props[SEQ_CLIENT_POOL_PROP_OUTPUT_ROOM] =
         g_param_spec_int("output-room", "output-room",
                          "The number of cells in memory pool for output "
-                        "direction to block user process.",
+                         "direction to block user process.",
                          0, G_MAXINT,
                          0,
                          G_PARAM_READWRITE);
@@ -135,7 +135,7 @@ static void alsaseq_client_pool_class_init(ALSASeqClientPoolClass *klass)
     seq_client_pool_props[SEQ_CLIENT_POOL_PROP_OUTPUT_FREE] =
         g_param_spec_int("output-free", "output-free",
                          "The free number of cells in memory pool for output "
-                        "direction.",
+                         "direction.",
                          0, G_MAXINT,
                          0,
                          G_PARAM_READWRITE);
@@ -143,7 +143,7 @@ static void alsaseq_client_pool_class_init(ALSASeqClientPoolClass *klass)
     seq_client_pool_props[SEQ_CLIENT_POOL_PROP_INPUT_FREE] =
         g_param_spec_int("input-free", "input-free",
                          "The free number of cells in memory pool for input "
-                        "direction.",
+                         "direction.",
                          0, G_MAXINT,
                          0,
                          G_PARAM_READWRITE);