Added missing parentheses

This commit is contained in:
Sam Lantinga 2024-10-04 13:27:13 -07:00
parent 5a60d073c0
commit d5af0c7e09
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@
*
* These strings are maintained per-thread, and apps are welcome to set their
* own errors, which is popular when building libraries on top of SDL for
* other apps to consume. These strings are set by calling SDL_SetError.
* other apps to consume. These strings are set by calling SDL_SetError().
*
* A common usage pattern is to have a function that returns true for success
* and false for failure, and do this when something fails: