summaryrefslogtreecommitdiffstats
path: root/src/target/firmware/apps
diff options
context:
space:
mode:
authorHarald Welte2010-03-27 05:11:39 +0100
committerHarald Welte2010-03-27 05:24:16 +0100
commit9f5c9e4a2a9d36e6e238e5ff38197a7d2464c50c (patch)
tree1393cb6dd2c48dd0a628e3bdce9c6da1f1ed0a78 /src/target/firmware/apps
parentlayer23: convert to libosmocore logging API (diff)
downloadosmocom-9f5c9e4a2a9d36e6e238e5ff38197a7d2464c50c.tar.gz
osmocom-9f5c9e4a2a9d36e6e238e5ff38197a7d2464c50c.tar.xz
osmocom-9f5c9e4a2a9d36e6e238e5ff38197a7d2464c50c.zip
apps/hello_world: cosmetic fix
Diffstat (limited to 'src/target/firmware/apps')
-rw-r--r--src/target/firmware/apps/hello_world/main.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/target/firmware/apps/hello_world/main.c b/src/target/firmware/apps/hello_world/main.c
index 2a6a65b..d1a566b 100644
--- a/src/target/firmware/apps/hello_world/main.c
+++ b/src/target/firmware/apps/hello_world/main.c
@@ -75,13 +75,11 @@ static void console_rx_cb(uint8_t dlci, struct msgb *msg)
static void l1a_l23_rx_cb(uint8_t dlci, struct msgb *msg)
{
- {
- int i;
- puts("l1a_l23_rx_cb: ");
- for (i = 0; i < msg->len; i++)
- printf("%02x ", msg->data[i]);
- puts("\n");
- }
+ int i;
+ puts("l1a_l23_rx_cb: ");
+ for (i = 0; i < msg->len; i++)
+ printf("%02x ", msg->data[i]);
+ puts("\n");
}
int main(void)