mirror of https://github.com/MidnightCommander/mc
lib/vfs/interface.c: add missed INDENT-ON, indentation.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
3da5412999
commit
f47688a781
|
@ -554,10 +554,12 @@ int mc_##name (const vfs_path_t *vpath, struct stat *buf) \
|
|||
MC_STATOP (stat)
|
||||
MC_STATOP (lstat)
|
||||
|
||||
/* *INDENT-ON* */
|
||||
|
||||
/* --------------------------------------------------------------------------------------------- */
|
||||
|
||||
vfs_path_t *
|
||||
mc_getlocalcopy (const vfs_path_t * pathname_vpath)
|
||||
mc_getlocalcopy (const vfs_path_t *pathname_vpath)
|
||||
{
|
||||
vfs_path_t *result = NULL;
|
||||
struct vfs_class *me;
|
||||
|
@ -579,7 +581,7 @@ mc_getlocalcopy (const vfs_path_t * pathname_vpath)
|
|||
/* --------------------------------------------------------------------------------------------- */
|
||||
|
||||
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)
|
||||
{
|
||||
int result = -1;
|
||||
|
@ -608,7 +610,7 @@ mc_ungetlocalcopy (const vfs_path_t * pathname_vpath, const vfs_path_t * local_v
|
|||
*/
|
||||
|
||||
int
|
||||
mc_chdir (const vfs_path_t * vpath)
|
||||
mc_chdir (const vfs_path_t *vpath)
|
||||
{
|
||||
struct vfs_class *old_vfs;
|
||||
vfsid old_vfsid;
|
||||
|
@ -729,7 +731,7 @@ mc_lseek (int fd, off_t offset, int whence)
|
|||
*/
|
||||
|
||||
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;
|
||||
int fd;
|
||||
|
|
Loading…
Reference in New Issue