Hi, I just came back to my computer and found this window open... Never seen it before, didn't install anything new (I literally used my computer a little while in the morning, went to the gym, cooked lunch, sat down and saw this message open). Google isn't providing me with any answers, so I need help! Thanks!
script error for https://github.com/octo/mongoose/blob/master/mongoose.c what ever mongoose is for. Also found this http://www.hwupgrade.it/forum/showthread.php?t=2651122
Assertion is used by software developers for debugging purposes. Developer inserts assert(some predicate) into source code then he builds debug version of application and runs it. When predicate is false he sees such window with assertion failure and can troubleshoot the place in code in debugger. If you see such assertion failure window it means you have application built with debug options. http://www.cplusplus.com/reference/cassert/assert/ https://msdn.microsoft.com/en-us/library/ww5t02fa.aspx
Thanks everyone, those are some helpful replies. The error didn't appear again after I closed it. Now I just need to figure out what mongoose is and where it came from.
"mongoose.c" is source code file (in C language) participated in application. I.e. application is built from several of such source code files. From assertion window we can say that line 3830 in that "mongoose.c" has a check whether some queue is in valid state - "sq_head > sq_tail".