Skip to content

Commit

Permalink
Merge pull request #234 from CE-Programming/fix-examples-warnings
Browse files Browse the repository at this point in the history
Fix compile warnings in examples
  • Loading branch information
mateoconlechuga authored Jan 12, 2020
2 parents 96e6c5a + 03ca44c commit 24ce1c6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions examples/graphx/text_clipped/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,6 @@ int main(void)

/* End graphics drawing */
gfx_End();

return 0;
}
2 changes: 2 additions & 0 deletions examples/graphx/text_flipped/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ int main(void)

/* End graphics drawing */
gfx_End();

return 0;
}

void PrintCenteredFlippedText(char *str)
Expand Down
1 change: 1 addition & 0 deletions examples/standalone/lcd_fill/src/main.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <string.h>
#include <tice.h>

void FillScreen(uint8_t color);
Expand Down
1 change: 1 addition & 0 deletions examples/standalone/random/src/main.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <stdlib.h>
#include <tice.h>

int main(void)
Expand Down
2 changes: 2 additions & 0 deletions examples/standalone/real_time_clock/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,6 @@ int main(void)
rtc_IntAcknowledge = rtc_IntStatus;
}
}

return 0;
}

0 comments on commit 24ce1c6

Please sign in to comment.