You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The repeat loop uses size_t, which is unsigned long, to store the loop count. If a negative number is used, it stores a very high number in the variable since it's unsigned. Changing the type to e. g. long should be enough to fix this.