lib/vfs/interface.c: add missed INDENT-ON, indentation.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2024-08-25 10:34:00 +03:00
parent 3da5412999
commit f47688a781
1 changed files with 6 additions and 4 deletions

View File

@ -554,10 +554,12 @@ int mc_##name (const vfs_path_t *vpath, struct stat *buf) \
MC_STATOP (stat) MC_STATOP (stat)
MC_STATOP (lstat) MC_STATOP (lstat)
/* *INDENT-ON* */
/* --------------------------------------------------------------------------------------------- */ /* --------------------------------------------------------------------------------------------- */
vfs_path_t * vfs_path_t *
mc_getlocalcopy (const vfs_path_t * pathname_vpath) mc_getlocalcopy (const vfs_path_t *pathname_vpath)
{ {
vfs_path_t *result = NULL; vfs_path_t *result = NULL;
struct vfs_class *me; struct vfs_class *me;
@ -579,7 +581,7 @@ mc_getlocalcopy (const vfs_path_t * pathname_vpath)
/* --------------------------------------------------------------------------------------------- */ /* --------------------------------------------------------------------------------------------- */
int int
mc_ungetlocalcopy (const vfs_path_t * pathname_vpath, const vfs_path_t * local_vpath, mc_ungetlocalcopy (const vfs_path_t *pathname_vpath, const vfs_path_t *local_vpath,
gboolean has_changed) gboolean has_changed)
{ {
int result = -1; int result = -1;
@ -608,7 +610,7 @@ mc_ungetlocalcopy (const vfs_path_t * pathname_vpath, const vfs_path_t * local_v
*/ */
int int
mc_chdir (const vfs_path_t * vpath) mc_chdir (const vfs_path_t *vpath)
{ {
struct vfs_class *old_vfs; struct vfs_class *old_vfs;
vfsid old_vfsid; vfsid old_vfsid;
@ -729,7 +731,7 @@ mc_lseek (int fd, off_t offset, int whence)
*/ */
int int
mc_mkstemps (vfs_path_t ** pname_vpath, const char *prefix, const char *suffix) mc_mkstemps (vfs_path_t **pname_vpath, const char *prefix, const char *suffix)
{ {
char *p1, *p2; char *p1, *p2;
int fd; int fd;