=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/Attic/clock.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- src/usr.bin/tmux/Attic/clock.c 2009/11/26 23:13:47 1.5 +++ src/usr.bin/tmux/Attic/clock.c 2009/12/03 22:50:09 1.6 @@ -1,4 +1,4 @@ -/* $OpenBSD: clock.c,v 1.5 2009/11/26 23:13:47 nicm Exp $ */ +/* $OpenBSD: clock.c,v 1.6 2009/12/03 22:50:09 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott @@ -134,13 +134,13 @@ for (ptr = tim; *ptr != '\0'; ptr++) { if (*ptr >= '0' && *ptr <= '9') idx = *ptr - '0'; - else if (*ptr == ':') + else if (*ptr == ':') idx = 10; - else if (*ptr == 'A') + else if (*ptr == 'A') idx = 11; - else if (*ptr == 'P') + else if (*ptr == 'P') idx = 12; - else if (*ptr == 'M') + else if (*ptr == 'M') idx = 13; else { x += 6;