From 4e29a820b60148f2371cf0aba219712faba56a1f Mon Sep 17 00:00:00 2001 From: Thomas Wienecke Date: Thu, 27 Mar 2014 13:04:26 +0100 Subject: Address clint warnings and other style issues. * Add const. * Fix conditions (move && from end to start of line). * Use int32_t instead of long. * Use //-style comments. --- test/unit/os/fs.moon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/unit/os/fs.moon b/test/unit/os/fs.moon index 5d88b5cdb8..44dd3a123e 100644 --- a/test/unit/os/fs.moon +++ b/test/unit/os/fs.moon @@ -16,7 +16,7 @@ int os_dirname(char_u *buf, int len); int os_isdir(char_u * name); int is_executable(char_u *name); int os_can_exe(char_u *name); -long os_getperm(char_u *name); +int32_t os_getperm(char_u *name); int os_setperm(char_u *name, long perm); int os_file_exists(const char_u *name); ]] -- cgit