From e933510236989b4e2a8490dfea3cb34b300137a3 Mon Sep 17 00:00:00 2001 From: Kyle Manna Date: Mon, 17 Aug 2015 18:50:53 -0700 Subject: [PATCH] compiler: Fix missing comments * Later versions of compilers/pre-processors are upset about the syntax * Bracket unterminated string with proper comment tags --- compiler/capnpc-c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/capnpc-c.c b/compiler/capnpc-c.c index e14b3a7..33a02d6 100644 --- a/compiler/capnpc-c.c +++ b/compiler/capnpc-c.c @@ -905,7 +905,7 @@ static void define_struct(struct node *n) { } #if 0 -Commenting out interfaces until the RPC protocol has been spec'd +/* Commenting out interfaces until the RPC protocol has been spec'd */ static int find_offset(struct str *v, int inc, uint64_t mask) { int i, j; union {uint64_t u; char c[8];} umask;