Skip to content

Commit 91a6f38

Browse files
committed
AppClient: re-indent
1 parent f63438e commit 91a6f38

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tools/appclient.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,8 @@ static int _appclient_call(int verbose, AppClient * ac, AppClientCall * call)
213213
case VT_INT64:
214214
if(variable_get_as(v, VT_INT64, &ires, NULL)
215215
== 0)
216-
printf("\"%s\"%s%" PRId64 "\n", call->name,
216+
printf("\"%s\"%s%" PRId64 "\n",
217+
call->name,
217218
" returned ", ires);
218219
else
219220
printf("\"%s\"%s\n", call->name,
@@ -225,7 +226,8 @@ static int _appclient_call(int verbose, AppClient * ac, AppClientCall * call)
225226
case VT_UINT64:
226227
if(variable_get_as(v, VT_UINT64, &ures, NULL)
227228
== 0)
228-
printf("\"%s\"%s%" PRIu64 "\n", call->name,
229+
printf("\"%s\"%s%" PRIu64 "\n",
230+
call->name,
229231
" returned ", ures);
230232
else
231233
printf("\"%s\"%s\n", call->name,

0 commit comments

Comments
 (0)