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