~ctwm/ctwm/trunk

« back to all changes in this revision

Viewing changes to signals.c

  • Committer: Matthew Fuller
  • Date: 2018-11-18 22:08:49 UTC
  • mto: This revision was merged to the branch mainline in revision 652.
  • Revision ID: fullermd@over-yonder.net-20181118220849-pwt4zglzfbi6ihq7
Done() -> DoShutdown().  Imperative form is more descriptive, and it's
consistent with DoRestart().

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
        // Shutting down?
77
77
        if(sig_shutdown) {
78
78
                // Doit
79
 
                Done();
 
79
                DoShutdown();
80
80
 
81
81
                // Can't return!
82
 
                fprintf(stderr, "%s: Done() shouldn't return!\n", ProgramName);
 
82
                fprintf(stderr, "%s: DoShutdown() shouldn't return!\n", ProgramName);
83
83
                exit(1);
84
84
        }
85
85