diff options
author | Egor Duda <deo@logos-m.ru> | 2000-09-06 14:21:53 +0000 |
---|---|---|
committer | Egor Duda <deo@logos-m.ru> | 2000-09-06 14:21:53 +0000 |
commit | 664b2d68eba3e95d9936c8d21ec20681a10fa312 (patch) | |
tree | e6271d97288d679418f83a7ad9861de54f0a4dcf /winsup/testsuite/winsup.api/ltp/asyncio02.c | |
parent | 94cb46cdf0ab32ab3ef40266b4e92c72e7c0f7b3 (diff) | |
download | cygnal-664b2d68eba3e95d9936c8d21ec20681a10fa312.tar.gz cygnal-664b2d68eba3e95d9936c8d21ec20681a10fa312.tar.bz2 cygnal-664b2d68eba3e95d9936c8d21ec20681a10fa312.zip |
Add 'const' qualifiers where needed to avoid compiler warnings.
* libltp/lib/tst_sig.c (tst_sig): Don't attempt to cleanup on
fatal errors.
* libltp/lib/parse_opts.c (parse_opts): Initialize allocated
string to prevent heap corruption.
Diffstat (limited to 'winsup/testsuite/winsup.api/ltp/asyncio02.c')
-rw-r--r-- | winsup/testsuite/winsup.api/ltp/asyncio02.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/testsuite/winsup.api/ltp/asyncio02.c b/winsup/testsuite/winsup.api/ltp/asyncio02.c index 23532da79..b7ccb62f5 100644 --- a/winsup/testsuite/winsup.api/ltp/asyncio02.c +++ b/winsup/testsuite/winsup.api/ltp/asyncio02.c @@ -151,7 +151,7 @@ main(int ac, char **av) int ret_val; /* return value from testrun call */ int eok; /* everything is ok flag */ int lc; /* loop counter */ - char *msg; /* message returned from parse_opts */ + const char *msg; /* message returned from parse_opts */ int flag_cnt; Tst_nobuf=1; |