Skip to content
Snippets Groups Projects
Commit 1c13b8af authored by Randy Sommerfeld's avatar Randy Sommerfeld Committed by Deucе
Browse files

fix typo

parent d8804c19
Branches
Tags
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #1235 passed
...@@ -2596,8 +2596,8 @@ char *utimestr(time_t *intime) ...@@ -2596,8 +2596,8 @@ char *utimestr(time_t *intime)
if(gm->tm_hour>=12) { if(gm->tm_hour>=12) {
strcpy(mer,"pm"); strcpy(mer,"pm");
hour=gm->tm_hour; hour=gm->tm_hour;
if (tm_hour > 12) if (hour > 12)
hour=gm->tm_hour-12; hour-=12;
} }
else { else {
if(!gm->tm_hour) if(!gm->tm_hour)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment