summaryrefslogtreecommitdiff
path: root/attrib
diff options
context:
space:
mode:
authorDave Nicolson <david.nicolson@gmail.com>2023-02-12 18:24:02 +0100
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2023-02-14 12:35:38 -0800
commit89f535894e59b66e70213ec9ab33fd158e8f54f1 (patch)
tree71d6a4cdfec43933c5b8cdb4b748b437e383f52f /attrib
parent5d63ee2a58c60fdd9f73298d0686e63ef9e16273 (diff)
downloadbluez-89f535894e59b66e70213ec9ab33fd158e8f54f1.tar.gz
gatttool: Use consistent spacing before brackets
Diffstat (limited to 'attrib')
-rw-r--r--attrib/gatttool.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/attrib/gatttool.c b/attrib/gatttool.c
index 6a0ddfaad..2d03875b0 100644
--- a/attrib/gatttool.c
+++ b/attrib/gatttool.c
@@ -456,17 +456,17 @@ static gboolean parse_uuid(const char *key, const char *value,
static GOptionEntry primary_char_options[] = {
{ "start", 's' , 0, G_OPTION_ARG_INT, &opt_start,
- "Starting handle(optional)", "0x0001" },
+ "Starting handle (optional)", "0x0001" },
{ "end", 'e' , 0, G_OPTION_ARG_INT, &opt_end,
- "Ending handle(optional)", "0xffff" },
+ "Ending handle (optional)", "0xffff" },
{ "uuid", 'u', G_OPTION_FLAG_OPTIONAL_ARG, G_OPTION_ARG_CALLBACK,
- parse_uuid, "UUID16 or UUID128(optional)", "0x1801"},
+ parse_uuid, "UUID16 or UUID128 (optional)", "0x1801"},
{ NULL },
};
static GOptionEntry char_rw_options[] = {
{ "handle", 'a' , 0, G_OPTION_ARG_INT, &opt_handle,
- "Read/Write characteristic by handle(required)", "0x0001" },
+ "Read/Write characteristic by handle (required)", "0x0001" },
{ "value", 'n' , 0, G_OPTION_ARG_STRING, &opt_value,
"Write characteristic value (required for write operation)",
"0x0001" },