diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-10-16 05:36:38 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-10-16 05:36:38 +0300 |
commit | 2c76d05179339ca7100c0e5649dd2e0d50a0cb4c (patch) | |
tree | 6aca34865b80892a9d060f0f6001e3360d3adca6 /configure | |
parent | 9a5ad7ae3c0bb78eebdf18ede5521e2cd14f111c (diff) | |
download | egawk-2c76d05179339ca7100c0e5649dd2e0d50a0cb4c.tar.gz egawk-2c76d05179339ca7100c0e5649dd2e0d50a0cb4c.tar.bz2 egawk-2c76d05179339ca7100c0e5649dd2e0d50a0cb4c.zip |
Fix for readline checks on Solaris.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -10437,7 +10437,8 @@ int main(int argc, char **argv) dup(fd); line = readline("giveittome> "); - printf("got <%s>\n", line); + /* some printfs don't handle NULL for %s */ + printf("got <%s>\n", line ? line : "(NULL)"); return 0; } _ACEOF |