From 0655839603518a97156e1b415b37e4c67c875b6f Mon Sep 17 00:00:00 2001 From: oliverschmidt Date: Fri, 8 Feb 2008 12:14:52 +0000 Subject: [PATCH] Removed superfluous semicolon. --- platform/win32/loader/dll-loader.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/win32/loader/dll-loader.h b/platform/win32/loader/dll-loader.h index 9693cfeb5..f71a9eba0 100644 --- a/platform/win32/loader/dll-loader.h +++ b/platform/win32/loader/dll-loader.h @@ -30,12 +30,12 @@ * * Author: Oliver Schmidt * - * $Id: dll-loader.h,v 1.4 2008/02/07 15:54:50 oliverschmidt Exp $ + * $Id: dll-loader.h,v 1.5 2008/02/08 12:14:52 oliverschmidt Exp $ */ #ifndef __DLL_LOADER_H__ #define __DLL_LOADER_H__ -#define LOADER_LOAD(name, arg) dll_loader_load(name, arg); +#define LOADER_LOAD(name, arg) dll_loader_load(name, arg) #define LOADER_UNLOAD() dll_loader_unload((void *)autostart_processes) #define LOADER_LOAD_DSC(name) dll_loader_load_dsc(name) #define LOADER_UNLOAD_DSC(dsc) dll_loader_unload_dsc(dsc)