diff options
author | Ilya Zakharevich <ilya@math.ohio-state.edu> | 1996-12-18 18:30:35 +1200 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1996-12-19 16:44:00 +1200 |
commit | df3ef7a9a68db503d1aecd7cb40d5f974fa0066b (patch) | |
tree | 3bd7431c5670f1aad273881b0d060c9821758fd5 /os2/os2.c | |
parent | 055be0b80e0d5ab4109104cbf7a5f5379033e671 (diff) | |
download | perl-df3ef7a9a68db503d1aecd7cb40d5f974fa0066b.tar.gz |
OS/2 updates from Ilya
Diffstat (limited to 'os2/os2.c')
-rw-r--r-- | os2/os2.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -60,7 +60,7 @@ get_sysinfo(ULONG pid, ULONG flags) rc = QuerySysState(flags, pid, pbuffer, buf_len); while (rc == ERROR_BUFFER_OVERFLOW) { Renew(pbuffer, buf_len *= 2, char); - rc = QuerySysState(QSS_PROCESS, pid, pbuffer, buf_len); + rc = QuerySysState(flags, pid, pbuffer, buf_len); } if (rc) { FillOSError(rc); |