From 6cb325e2fa043bbe8d870300a19cb42fb83c1168 Mon Sep 17 00:00:00 2001 From: Tomas Lindquist Olsen Date: Sun, 24 Aug 2008 17:57:53 +0200 Subject: [PATCH] Missing 'break' in osx code path. --- dmd/mars.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dmd/mars.c b/dmd/mars.c index 9966ddcc..28af8a8d 100644 --- a/dmd/mars.c +++ b/dmd/mars.c @@ -761,6 +761,7 @@ int main(int argc, char *argv[]) VersionCondition::addPredefinedGlobalIdent("darwin"); VersionCondition::addPredefinedGlobalIdent("Posix"); global.params.tt_os = "-pc-darwin-gnu"; + break; default: assert(false && "Target OS not supported");