summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYong Bakos <ybakos@humanoriented.com>2016-03-31 18:55:54 -0500
committerPekka Paalanen <pekka.paalanen@collabora.co.uk>2016-04-01 18:01:50 +0300
commit5259084288061ad6ef24e41f456f5f6d9ac7f222 (patch)
tree1697742100a86f02d77ea7950eab7acdd2e5a819
parent0715ee5cf9c467b0aa2717f6276716d81fd0178b (diff)
downloadwayland-5259084288061ad6ef24e41f456f5f6d9ac7f222.tar.gz
scanner: Fix spacing of @param
Adds one space to the @param lines in generated .h files, aligning the indentation with the rest of the comment block. Signed-off-by: Yong Bakos <ybakos@humanoriented.com> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r--src/scanner.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scanner.c b/src/scanner.c
index a895f92..65df3ae 100644
--- a/src/scanner.c
+++ b/src/scanner.c
@@ -1148,7 +1148,7 @@ emit_event_wrappers(struct wl_list *message_list, struct interface *interface)
" * Sends an %s event to the client owning the resource.\n",
interface->name,
m->name);
- printf("* @param resource_ The client's resource\n");
+ printf(" * @param resource_ The client's resource\n");
wl_list_for_each(a, &m->arg_list, link) {
if (a->summary)
printf(" * @param %s %s\n", a->name, a->summary);