diff options
author | Christopher Faylor <me@cgf.cx> | 2002-09-23 00:31:31 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-09-23 00:31:31 +0000 |
commit | f0227ea3c78d8d23dc35f0939219649447eecfae (patch) | |
tree | 0a116e294fa35db8a66901f6ef85b41720913c2f /winsup/cygwin/fhandler_process.cc | |
parent | c87c8a533f9e917878d433956420953598ab6cd6 (diff) | |
download | cygnal-f0227ea3c78d8d23dc35f0939219649447eecfae.tar.gz cygnal-f0227ea3c78d8d23dc35f0939219649447eecfae.tar.bz2 cygnal-f0227ea3c78d8d23dc35f0939219649447eecfae.zip |
More GNUify non-GNU formatted functions calls throughout.
Diffstat (limited to 'winsup/cygwin/fhandler_process.cc')
-rw-r--r-- | winsup/cygwin/fhandler_process.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler_process.cc b/winsup/cygwin/fhandler_process.cc index 0633b0ebc..755d639af 100644 --- a/winsup/cygwin/fhandler_process.cc +++ b/winsup/cygwin/fhandler_process.cc @@ -62,7 +62,7 @@ static const char * const process_listing[] = }; static const int PROCESS_LINK_COUNT = - (sizeof(process_listing) / sizeof(const char *)) - 1; + (sizeof (process_listing) / sizeof (const char *)) - 1; static off_t format_process_stat (_pinfo *p, char *destbuf, size_t maxsize); static off_t format_process_status (_pinfo *p, char *destbuf, size_t maxsize); @@ -475,7 +475,7 @@ format_process_stat (_pinfo *p, char *destbuf, size_t maxsize) } else { - start_time = (GetTickCount() / 1000 - time(NULL) + p->start_time) * HZ; + start_time = (GetTickCount () / 1000 - time (NULL) + p->start_time) * HZ; } return __small_sprintf (destbuf, "%d (%s) %c " "%d %d %d %d %d " |