Skip to content

Commit 8b2ebe5

Browse files
committed
Fix formatting
1 parent 07a3921 commit 8b2ebe5

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

libs/common/src/getExecutablePath.cpp

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -124,16 +124,16 @@ std::string getExecutablePath()
124124
#elif(BOOST_OS_HAIKU)
125125
std::string getExecutablePath()
126126
{
127-
std::string ret;
128-
int32 cookie = 0;
129-
image_info info;
130-
while (get_next_image_info(B_CURRENT_TEAM, &cookie, &info) == B_OK)
131-
{
132-
if (info.type == B_APP_IMAGE)
133-
{
134-
ret = info.name;
135-
}
136-
}
127+
std::string ret;
128+
int32 cookie = 0;
129+
image_info info;
130+
while(get_next_image_info(B_CURRENT_TEAM, &cookie, &info) == B_OK)
131+
{
132+
if(info.type == B_APP_IMAGE)
133+
{
134+
ret = info.name;
135+
}
136+
}
137137
return ret;
138138
}
139139

0 commit comments

Comments
 (0)