From 12dff5f01d3ca2993118ced3d9a303bff233bfdc Mon Sep 17 00:00:00 2001 From: elbandi Date: Mon, 27 Feb 2017 00:26:46 +0100 Subject: [PATCH] Fix type: add space before compiler option define --- algorithm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/algorithm.c b/algorithm.c index f2c90d5b..b41bbc2b 100644 --- a/algorithm.c +++ b/algorithm.c @@ -124,7 +124,7 @@ static void append_scrypt_compiler_options(struct _build_kernel_data *data, stru static void append_ethash_compiler_options(struct _build_kernel_data *data, struct cgpu_info *cgpu, struct _algorithm_t *algorithm) { #ifdef WIN32 - strcat(data->compiler_options, "-DWINDOWS"); + strcat(data->compiler_options, " -DWINDOWS"); #endif }