Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/pebble-mario.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/pebble-mario.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pebble-mario.c b/src/pebble-mario.c
index 996df64..4013afd 100644
--- a/src/pebble-mario.c
+++ b/src/pebble-mario.c
@@ -108,8 +108,8 @@ static void to_upcase(char* str)
{
while (*str)
{
- if (*str >='a' && *str <= 'z') *str += 'A'-'a';
- str++;
+ if (*str >='a' && *str <= 'z') *str += 'A'-'a';
+ str++;
}
}