aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>2023-06-29 12:52:17 +0900
committer坂本 貴史 <o-takashi@sakamocchi.jp>2023-06-29 19:47:24 +0900
commit36cf15da013a36637a3385143e9583457a9eb79e (patch)
tree66940769e4d17a01cff50457d8f36812602488b7
parentac8d61dd2da6f9541e96c69e7f3807e2cd747187 (diff)
downloadlibhinawa-36cf15da013a36637a3385143e9583457a9eb79e.tar.gz
fw_fcp: use tab for indentation
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
-rw-r--r--src/fw_fcp.c35
-rw-r--r--src/fw_fcp.h16
2 files changed, 25 insertions, 26 deletions
diff --git a/src/fw_fcp.c b/src/fw_fcp.c
index f74376d..cc2c652 100644
--- a/src/fw_fcp.c
+++ b/src/fw_fcp.c
@@ -173,28 +173,27 @@ static void hinawa_fw_fcp_class_init(HinawaFwFcpClass *klass)
FW_FCP_PROP_TYPE_COUNT,
fw_fcp_props);
- /**
- * HinawaFwFcp::responded:
- * @self: A [class@FwFcp].
- * @frame: (array length=frame_size)(element-type guint8): The array with elements for byte
- * data of response for FCP.
- * @frame_size: The number of elements of the array.
- *
+ /**
+ * HinawaFwFcp::responded:
+ * @self: A [class@FwFcp].
+ * @frame: (array length=frame_size)(element-type guint8): The array with elements for byte
+ * data of response for FCP.
+ * @frame_size: The number of elements of the array.
+ *
* Emitted when the node transfers asynchronous packet as response for FCP and the process
* successfully read the content of packet.
*
* Since: 2.1
- */
- fw_fcp_sigs[FW_FCP_SIG_TYPE_RESPONDED] =
- g_signal_new("responded",
- G_OBJECT_CLASS_TYPE(klass),
- G_SIGNAL_RUN_LAST,
- G_STRUCT_OFFSET(HinawaFwFcpClass, responded),
- NULL, NULL,
- hinawa_sigs_marshal_VOID__POINTER_UINT,
- G_TYPE_NONE,
- 2, G_TYPE_POINTER, G_TYPE_UINT);
-
+ */
+ fw_fcp_sigs[FW_FCP_SIG_TYPE_RESPONDED] =
+ g_signal_new("responded",
+ G_OBJECT_CLASS_TYPE(klass),
+ G_SIGNAL_RUN_LAST,
+ G_STRUCT_OFFSET(HinawaFwFcpClass, responded),
+ NULL, NULL,
+ hinawa_sigs_marshal_VOID__POINTER_UINT,
+ G_TYPE_NONE,
+ 2, G_TYPE_POINTER, G_TYPE_UINT);
}
static void hinawa_fw_fcp_init(HinawaFwFcp *self)
diff --git a/src/fw_fcp.h b/src/fw_fcp.h
index bcdc7a3..8807418 100644
--- a/src/fw_fcp.h
+++ b/src/fw_fcp.h
@@ -17,17 +17,17 @@ GQuark hinawa_fw_fcp_error_quark();
struct _HinawaFwFcpClass {
HinawaFwRespClass parent_class;
- /**
- * HinawaFwFcpClass::responded:
- * @self: A [class@FwFcp].
- * @frame: (array length=frame_size)(element-type guint8): The array with elements for byte
- * data of response for Function Control Protocol.
- * @frame_size: The number of elements of the array.
- *
+ /**
+ * HinawaFwFcpClass::responded:
+ * @self: A [class@FwFcp].
+ * @frame: (array length=frame_size)(element-type guint8): The array with elements for byte
+ * data of response for Function Control Protocol.
+ * @frame_size: The number of elements of the array.
+ *
* Class closure for the [signal@FwFcp::responded] signal.
*
* Since: 2.1
- */
+ */
void (*responded)(HinawaFwFcp *self, const guint8 *frame, guint frame_size);
};