Added missing whitespace in function calls within adaptors

Pointed out by Tom

From-SVN: r28803
This commit is contained in:
Alexandre Oliva 1999-08-22 16:19:31 +00:00
parent 5b02bbf7bb
commit b78639f6f2
2 changed files with 4 additions and 4 deletions

View file

@ -37,7 +37,7 @@ static inline char *
ctime_adaptor (char* (*ctime_r)(T_clock *clock, T_buf *buf),
time_t *clock, char (&buf)[buflen])
{
return ctime_r(clock, buf);
return ctime_r (clock, buf);
}
/* This is an old-style ctime_r, used on IRIX 5.2. */
@ -46,7 +46,7 @@ static inline char *
ctime_adaptor (char* (*ctime_r)(T_clock *clock, T_buf *buf, T_buflen len),
time_t *clock, char (&buf)[buflen])
{
return ctime_r(clock, buf, buflen);
return ctime_r (clock, buf, buflen);
}
#endif