From fd4c9d5b54756205d60fe14dc07e7afda9579efa Mon Sep 17 00:00:00 2001 From: "A.J. Beamon" Date: Mon, 5 Mar 2018 10:37:52 -0800 Subject: [PATCH] Fix line endings --- fdbclient/NativeAPI.actor.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/fdbclient/NativeAPI.actor.cpp b/fdbclient/NativeAPI.actor.cpp index abf54d25ffa..008cd989bb8 100644 --- a/fdbclient/NativeAPI.actor.cpp +++ b/fdbclient/NativeAPI.actor.cpp @@ -890,12 +890,12 @@ Reference DatabaseContext::getMasterProxies() { } //Actor which will wait until the ProxyInfo returned by the DatabaseContext cx is not NULL -ACTOR Future> getMasterProxiesFuture(DatabaseContext *cx) { - loop{ - Reference proxies = cx->getMasterProxies(); - if (proxies) - return proxies; - Void _ = wait( cx->onMasterProxiesChanged() ); +ACTOR Future> getMasterProxiesFuture(DatabaseContext *cx) { + loop{ + Reference proxies = cx->getMasterProxies(); + if (proxies) + return proxies; + Void _ = wait( cx->onMasterProxiesChanged() ); } }