* fish.c: Remove useless semicolons after functions.

This commit is contained in:
Pavel Roskin 2001-08-23 17:13:43 +00:00
parent d1749a1990
commit 13b66d593e
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2001-08-23 Pavel Roskin <proski@gnu.org>
* fish.c: Remove useless semicolons after functions.
2001-08-19 Pavel Roskin <proski@gnu.org>
* vfs.c (vfs_parse_ls_lga): Warning fix if st_nlink is unsigned.

View File

@ -680,10 +680,10 @@ static int fish_##name (vfs *me, char *path1, char *path2) \
#define XTEST if (bucket1 != bucket2) { ERRNOR (EXDEV, -1); }
FISH_OP(rename, XTEST, "#RENAME /%s /%s\n"
"mv \"/%s\" \"/%s\" 2>/dev/null\n"
"echo '### 000'" );
"echo '### 000'" )
FISH_OP(link, XTEST, "#LINK /%s /%s\n"
"ln \"/%s\" \"/%s\" 2>/dev/null\n"
"echo '### 000'" );
"echo '### 000'" )
static int fish_symlink (vfs *me, char *setto, char *path)
{