summaryrefslogtreecommitdiffstats
path: root/package/openwrt/trx.c
diff options
context:
space:
mode:
Diffstat (limited to 'package/openwrt/trx.c')
-rw-r--r--package/openwrt/trx.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/package/openwrt/trx.c b/package/openwrt/trx.c
index 05a6604e1..d4ad60037 100644
--- a/package/openwrt/trx.c
+++ b/package/openwrt/trx.c
@@ -180,11 +180,12 @@ int main(int argc, char **argv)
case 'b':
n = atoi(optarg);
if (n < cur_len) {
- fprintf(stderr, "WARNING: current length exceeds -b %d offset",n);
+ fprintf(stderr, "WARNING: current length exceeds -b %d offset\n",n);
} else {
memset(buf + cur_len, 0, n - cur_len);
cur_len = n;
}
+ break;
default:
usage();
}