Explorar o código

fix double spaces in example

Signed-off-by: Stephan Lachnit <stephanlachnit@protonmail.com>
Stephan Lachnit %!s(int64=4) %!d(string=hai) anos
pai
achega
2fb62e34fa
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      example/main.c

+ 2 - 2
example/main.c

@@ -40,7 +40,7 @@ int main(void)
 	/* Request we start game mode */
 	if (gamemode_request_start() != 0) {
 		fprintf(stderr, "Failed to request gamemode start: %s...\n", gamemode_error_string());
-		return  EXIT_FAILURE;
+		return EXIT_FAILURE;
 	}
 
 	/* Simulate running a game */
@@ -49,7 +49,7 @@ int main(void)
 	/* Request we end game mode (optional) */
 	if (gamemode_request_end() != 0) {
 		fprintf(stderr, "Failed to request gamemode end: %s...\n", gamemode_error_string());
-		return  EXIT_FAILURE;
+		return EXIT_FAILURE;
 	}
 
 	return EXIT_SUCCESS;