removing trailing spaces

This commit is contained in:
Jaume Bellet 2023-11-02 22:06:34 +01:00
parent 14a8265648
commit 7f71b9ac5b
3 changed files with 3 additions and 5 deletions

View File

@ -10,7 +10,7 @@
#include <string.h> #include <string.h>
char patches[MAX_MB_PATCHES][8] = {0}; char patches[MAX_MB_PATCHES][8] = {0};
void MB_patches_discover() void MB_patches_discover()
{ {
int i = 0; int i = 0;
@ -32,7 +32,7 @@ void MB_patches_discover()
void MB_init(void) { void MB_init(void) {
MB_patches_discover(); MB_patches_discover();
} }
char** MB_patches_get() { char** MB_patches_get() {
return (char**) patches; return (char**) patches;
} }

View File

@ -11,5 +11,3 @@ void MB_patches_get(void);
void MB_print_info(void); void MB_print_info(void);
#endif #endif

View File

@ -286,7 +286,7 @@ int main(int argc,
) )
{ {
bContext *C; bContext *C;
#ifndef WITH_PYTHON_MODULE #ifndef WITH_PYTHON_MODULE
bArgs *ba; bArgs *ba;
#endif #endif