mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-05 12:50:30 +09:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user