Changeset aa04e81 in mainline


Ignore:
Timestamp:
2012-04-03T19:07:29Z (12 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f7a0779
Parents:
fc7d28e
Message:

date: date/time format fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/date/date.c

    rfc7d28e raa04e81  
    113113        }
    114114
    115         printf("%d:%d:%d\n", t.tm_hour, t.tm_min, t.tm_sec);
     115        printf("%02d/%02d/%d ", t.tm_mday, t.tm_mon + 1, 1900 + t.tm_year);
     116        printf("%02d:%02d:%02d\n", t.tm_hour, t.tm_min, t.tm_sec);
    116117
    117118exit:
Note: See TracChangeset for help on using the changeset viewer.