diff options
| author | das <das> | 2009-04-10 22:53:27 (GMT) |
|---|---|---|
| committer | das <das> | 2009-04-10 22:53:27 (GMT) |
| commit | 2f46f6bb653a9e972a842a34b3c463d6a63e6dbf (patch) | |
| tree | bd4d6ca1ece0d456a6a4108a4def6e2dd8364428 | |
| parent | f8b88304f898bbdc78a725d7e4d52bd538fef7cd (diff) | |
| download | tcl-2f46f6bb653a9e972a842a34b3c463d6a63e6dbf.zip tcl-2f46f6bb653a9e972a842a34b3c463d6a63e6dbf.tar.gz tcl-2f46f6bb653a9e972a842a34b3c463d6a63e6dbf.tar.bz2 | |
fix warning
| -rw-r--r-- | macosx/tclMacOSXNotify.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/macosx/tclMacOSXNotify.c b/macosx/tclMacOSXNotify.c index b627321..cd4d4f2 100644 --- a/macosx/tclMacOSXNotify.c +++ b/macosx/tclMacOSXNotify.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclMacOSXNotify.c,v 1.24 2009/04/10 20:46:01 das Exp $ + * RCS: @(#) $Id: tclMacOSXNotify.c,v 1.25 2009/04/10 22:53:27 das Exp $ */ #include "tclInt.h" @@ -1372,6 +1372,8 @@ UpdateWaitingListAndServiceEvents( while (Tcl_ServiceAll() && tsdPtr->waitTime == 0) {} } break; + default: + break; } } |
