summaryrefslogtreecommitdiff
path: root/src/md
diff options
context:
space:
mode:
authorBen Boeckel <mathstuf@gmail.com>2015-02-04 11:34:34 -0500
committerBen Boeckel <mathstuf@gmail.com>2015-02-07 20:51:05 -0500
commit6f9408efe3bfe1fd8db54cb8537412d8bd95d969 (patch)
tree77c6199cdbe41eb9b8f10aca3bd4d65bb81f75e4 /src/md
parent1aefd69e9875d18829981663e6bf3ceca9c72ede (diff)
downloadcoreclr-6f9408efe3bfe1fd8db54cb8537412d8bd95d969.tar.gz
coreclr-6f9408efe3bfe1fd8db54cb8537412d8bd95d969.tar.bz2
coreclr-6f9408efe3bfe1fd8db54cb8537412d8bd95d969.zip
Remove excess arguments to endfunction() and else()
Arguments to else() are always confusing and endfunction only needs to match the first argument.
Diffstat (limited to 'src/md')
-rw-r--r--src/md/md_dbi.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/md/md_dbi.cmake b/src/md/md_dbi.cmake
index 6e7166b2fc..7622cf04c9 100644
--- a/src/md/md_dbi.cmake
+++ b/src/md/md_dbi.cmake
@@ -11,7 +11,7 @@ if(WIN32)
# using static crt for dbi
if (CMAKE_BUILD_TYPE STREQUAL DEBUG)
add_definitions(-MTd)
- else(CMAKE_BUILD_TYPE STREQUAL DEBUG)
+ else()
add_definitions(-MT)
endif(CMAKE_BUILD_TYPE STREQUAL DEBUG)
-endif(WIN32) \ No newline at end of file
+endif(WIN32)