XXXXX.c:999: error: label at end of compound statement
static void foo(struct XXXXX *x)
{
if (x->xxxxx != NULL) {
DBG(&xxx, "xxxxx");
goto done;
}
// 中略
done:
bar(1);
}
static void foo(struct XXXXX *x)
{
if (x->xxxxx != NULL) {
DBG(&xxx, "xxxxx");
goto done;
}
// 中略
done:
<strong><font color="red">;</font></strong>
bar(1);
}