diff --git a/websocket-sharp/Ext.cs b/websocket-sharp/Ext.cs index 9238c96f..37c26614 100644 --- a/websocket-sharp/Ext.cs +++ b/websocket-sharp/Ext.cs @@ -1827,7 +1827,7 @@ namespace WebSocketSharp /// public static void Times (this uint n, Action action) { - if (n <= 0) + if (n == 0) return; if (action == null)