diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-02-05 10:22:09 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-02-05 10:22:09 -0800 |
commit | fc6543c0f9292880180531d656e80c903e8e7dfd (patch) | |
tree | 7ac1fc5fbfb1b54f16e4e9d129d283ba9d2e0b55 /xcalc.c | |
parent | 28429cd68dfdc9850d3ebc7f712dc752a1c9244c (diff) |
Stop casting function returns to void
This was used with old versions of lint to stop warnings about
unused return values.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'xcalc.c')
-rw-r--r-- | xcalc.c | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -151,7 +151,7 @@ main(int argc, char **argv) dpy = XtDisplay(toplevel); wm_delete_window = XInternAtom(dpy, "WM_DELETE_WINDOW", False); - (void) XSetWMProtocols(dpy, XtWindow(toplevel), &wm_delete_window, 1); + XSetWMProtocols(dpy, XtWindow(toplevel), &wm_delete_window, 1); XDefineCursor(dpy, XtWindow(toplevel), appResources.cursor); if (appResources.stipple || (CellsOfScreen(XtScreen(toplevel)) <= 2)) @@ -325,15 +325,15 @@ void Quit(void) */ static void Syntax(int argc, char **argv) { - (void) fprintf(stderr, "%s: unknown options:", argv[0]); + fprintf(stderr, "%s: unknown options:", argv[0]); for (int i = 1; i <argc; i++) - (void) fprintf(stderr, " %s", argv[i]); - (void) fprintf(stderr, "\n\n"); - (void) fprintf(stderr, "Usage: %s", argv[0]); + fprintf(stderr, " %s", argv[i]); + fprintf(stderr, "\n\n"); + fprintf(stderr, "Usage: %s", argv[0]); for (Cardinal i = 0; i < XtNumber(Options); i++) - (void) fprintf(stderr, " [%s]", Options[i].option); - (void) fprintf(stderr, "\n"); - (void) fprintf(stderr, " %s -version\n", argv[0]); + fprintf(stderr, " [%s]", Options[i].option); + fprintf(stderr, "\n"); + fprintf(stderr, " %s -version\n", argv[0]); XtDestroyApplicationContext(xtcontext); exit(1); } |