Skip to content
This repository has been archived by the owner on Dec 26, 2020. It is now read-only.

Commit

Permalink
Missing newlines on printf
Browse files Browse the repository at this point in the history
  • Loading branch information
ZombieWizzard committed Aug 20, 2016
1 parent c338e37 commit 2ab7921
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,15 +115,15 @@ int main(int argc, char** argv) {
printf("Please check these details are correct\n");
printf("EMAIL: ");
setfg(COLOR_YELLOW);
printf("%s", email);
printf("%s\n", email);
setfg(COLOR_WHITE);
printf("PASSWORD: ");
setfg(COLOR_YELLOW);
printf("%s", password);
printf("%s\n", password);
setfg(COLOR_WHITE);
printf("IDPS: ");
setfg(COLOR_YELLOW);
printf("%s", idps);
printf("%s\n", idps);
setfg(COLOR_WHITE);
}

Expand Down

0 comments on commit 2ab7921

Please sign in to comment.