From a66703b01a11c7937fc31f3ae77710e11700cb38 Mon Sep 17 00:00:00 2001 From: terminx Date: Sat, 2 Dec 2017 12:42:31 +0000 Subject: [PATCH] tabs -> spaces git-svn-id: https://svn.eduke32.com/eduke32@6539 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/mact/src/scriplib.cpp | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/source/mact/src/scriplib.cpp b/source/mact/src/scriplib.cpp index dbb6e3458..1b4708976 100644 --- a/source/mact/src/scriplib.cpp +++ b/source/mact/src/scriplib.cpp @@ -112,22 +112,22 @@ void SCRIPT_FreeSection(ScriptSectionType * section) } #define AllocSection(s) \ - { \ - (s) = (ScriptSectionType *)Xmalloc(sizeof(ScriptSectionType)); \ - (s)->name = NULL; \ - (s)->entries = NULL; \ - (s)->lastline = NULL; \ - (s)->nextsection = (s); \ - (s)->prevsection = (s); \ - } + { \ + (s) = (ScriptSectionType *)Xmalloc(sizeof(ScriptSectionType)); \ + (s)->name = NULL; \ + (s)->entries = NULL; \ + (s)->lastline = NULL; \ + (s)->nextsection = (s); \ + (s)->prevsection = (s); \ + } #define AllocEntry(e) \ - { \ - (e) = (ScriptEntryType *)Xmalloc(sizeof(ScriptEntryType)); \ - (e)->name = NULL; \ - (e)->value = NULL; \ - (e)->nextentry = (e); \ - (e)->preventry = (e); \ - } + { \ + (e) = (ScriptEntryType *)Xmalloc(sizeof(ScriptEntryType)); \ + (e)->name = NULL; \ + (e)->value = NULL; \ + (e)->nextentry = (e); \ + (e)->preventry = (e); \ + } ScriptSectionType * SCRIPT_SectionExists(int32_t scripthandle, const char * sectionname) {