diff options
Diffstat (limited to 'libssh/sftp.c')
-rw-r--r-- | libssh/sftp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libssh/sftp.c b/libssh/sftp.c index 26e1b1f..dbdd57d 100644 --- a/libssh/sftp.c +++ b/libssh/sftp.c @@ -1765,13 +1765,13 @@ int sftp_seek64(SFTP_FILE *file, u64 new_offset) { } /* Report current byte position in file. */ -unsigned long sftp_tell(SFTP_FILE *file){ - return file->offset; +unsigned long sftp_tell(SFTP_FILE *file) { + return file->offset; } /* Rewinds the position of the file pointer to the beginning of the file.*/ -void sftp_rewind(SFTP_FILE *file){ - file->offset=0; +void sftp_rewind(SFTP_FILE *file) { + file->offset = 0; } /* deprecated */ |