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/delqueue.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/delqueue.cc')
-rw-r--r-- | winsup/cygwin/delqueue.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/delqueue.cc b/winsup/cygwin/delqueue.cc index b7314eab2..11c8c503b 100644 --- a/winsup/cygwin/delqueue.cc +++ b/winsup/cygwin/delqueue.cc @@ -24,7 +24,7 @@ void delqueue_list::init () { empty = 1; - memset(inuse, 0, MAX_DELQUEUES_PENDING); + memset (inuse, 0, MAX_DELQUEUES_PENDING); } void @@ -43,7 +43,7 @@ delqueue_list::queue_file (const char *dosname) { /* check for duplicates */ for (int i=0; i < MAX_DELQUEUES_PENDING; i++) - if (inuse[i] && strcmp(name[i], temp) == 0) + if (inuse[i] && strcmp (name[i], temp) == 0) return; } @@ -52,7 +52,7 @@ delqueue_list::queue_file (const char *dosname) { /* set the name first, in case someone else is running the queue they'll get a valid name */ - strcpy(name[i], temp); + strcpy (name[i], temp); inuse[i] = 1; empty = 0; debug_printf ("adding '%s' to queue %d", temp, i); |