Fix broken printf in examples/er-rest-example/resource/res-b1-sep-b2.c

This commit is contained in:
Simon Duquennoy 2015-10-01 10:53:21 +02:00
parent 9c15d1c42f
commit c8ec08732c
1 changed files with 2 additions and 2 deletions

View File

@ -67,9 +67,9 @@ res_post_handler(void *request, void *response, uint8_t *buffer, uint16_t prefer
coap_separate_accept(request, &request_metadata);
/* Need Time for calculation now */
uint32_t i;
int i;
for(i = 0; i <= 4096; i++) {
printf("\r% 4u\r", i);
printf("\r%4u\r", i);
}
printf("\n");