~ctwm/ctwm/trunk

« back to all changes in this revision

Viewing changes to gc.c

  • Committer: Matthew Fuller
  • Date: 2016-06-10 11:49:43 UTC
  • mto: This revision was merged to the branch mainline in revision 495.
  • Revision ID: fullermd@over-yonder.net-20160610114943-pv9au9ojwdq4eq32
Mechanical replacement of inline "(sometype *)0" constructs with NULL,
like pointers should be.

Show diffs side-by-side

added added

removed removed

Lines of Context:
160
160
                XSetDashes(dpy, Scr->BorderGC, 0, dashlist, 2);
161
161
        }
162
162
        else {
163
 
                Scr->BorderGC = XCreateGC(dpy, Scr->Root, 0, (XGCValues *) 0);
 
163
                Scr->BorderGC = XCreateGC(dpy, Scr->Root, 0, NULL);
164
164
        }
165
165
}