mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-15 23:50:44 +00:00
20 lines
583 B
Plaintext
20 lines
583 B
Plaintext
*** src/gui.c.bak Wed Oct 25 10:39:53 1995
|
|
--- src/gui.c Tue Dec 5 07:33:41 1995
|
|
***************
|
|
*** 2495,2501 ****
|
|
return 0;
|
|
else
|
|
{
|
|
! {char ans[10]; gets(ans);}
|
|
/* All other errors are 'fatal'. */
|
|
XGetErrorText (dsp, event->error_code, buf, 128);
|
|
fprintf (stderr, "X Error: %s\n", buf);
|
|
--- 2495,2501 ----
|
|
return 0;
|
|
else
|
|
{
|
|
! {char ans[10]; fgets(ans, sizeof(ans), stdin);}
|
|
/* All other errors are 'fatal'. */
|
|
XGetErrorText (dsp, event->error_code, buf, 128);
|
|
fprintf (stderr, "X Error: %s\n", buf);
|