tests/pkd/pkd_hello.c: change fprintf indentation

Although previously consistent with itself, change the fprintf
indentation to bring second lines "to the left" to line up with
the first fprintf argument instead of formatter string.

Addresses:
 - https://gitlab.com/libssh/libssh-mirror/-/merge_requests/320#note_1173911235

Signed-off-by: Jon Simons <jon@jonsimons.org>
Reviewed-by: Jakub Jelen <jjelen@redhat.com>
This commit is contained in:
Jon Simons
2022-11-16 18:50:25 -05:00
committed by Jakub Jelen
parent 4f6aa53b16
commit 44f60d878a

View File

@@ -1058,7 +1058,7 @@ static int pkd_cleanup_temp_dir(void) {
if (rmdir(pkd_dargs.opts.temp_dir.mkdtemp_str) != 0) {
fprintf(stderr, "pkd_cleanup_temp_dir rmdir '%s' failed\n",
pkd_dargs.opts.temp_dir.mkdtemp_str);
pkd_dargs.opts.temp_dir.mkdtemp_str);
rc = -1;
goto out;
}
@@ -1080,13 +1080,13 @@ static int pkd_cleanup_socket_wrapper(void) {
/* clean up socket-wrapper unix domain sockets */
if (pkd_rmfiles(pkd_dargs.opts.socket_wrapper.mkdtemp_str) != 0) {
fprintf(stderr, "pkd_cleanup_socket_wrapper pkd_rmfiles '%s' failed\n",
pkd_dargs.opts.socket_wrapper.mkdtemp_str);
pkd_dargs.opts.socket_wrapper.mkdtemp_str);
goto errrmfiles;
}
if (rmdir(pkd_dargs.opts.socket_wrapper.mkdtemp_str) != 0) {
fprintf(stderr, "pkd_cleanup_socket_wrapper rmdir '%s' failed\n",
pkd_dargs.opts.socket_wrapper.mkdtemp_str);
pkd_dargs.opts.socket_wrapper.mkdtemp_str);
goto errrmdir;
}