diff options
| author | Paul Eggert | 2011-02-04 23:18:46 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-02-04 23:18:46 -0800 |
| commit | 03fc768bf7d870eff13ece309da2ce6e747aa5bf (patch) | |
| tree | 81a6dcda58a95f3f451e39d206de8bfc7e517459 /lib-src/emacsclient.c | |
| parent | 5b0534c88840c28a4fc564d1b8c6887ee3855cdd (diff) | |
| download | emacs-03fc768bf7d870eff13ece309da2ce6e747aa5bf.tar.gz emacs-03fc768bf7d870eff13ece309da2ce6e747aa5bf.zip | |
* emacsclient.c: conform to C89 pointer rules
Diffstat (limited to 'lib-src/emacsclient.c')
| -rw-r--r-- | lib-src/emacsclient.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index 27042ebaef2..e5484b987e2 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c | |||
| @@ -854,7 +854,7 @@ unquote_argument (char *str) | |||
| 854 | 854 | ||
| 855 | 855 | ||
| 856 | int | 856 | int |
| 857 | file_name_absolute_p (const unsigned char *filename) | 857 | file_name_absolute_p (const char *filename) |
| 858 | { | 858 | { |
| 859 | /* Sanity check, it shouldn't happen. */ | 859 | /* Sanity check, it shouldn't happen. */ |
| 860 | if (! filename) return FALSE; | 860 | if (! filename) return FALSE; |
| @@ -867,7 +867,7 @@ file_name_absolute_p (const unsigned char *filename) | |||
| 867 | 867 | ||
| 868 | #ifdef WINDOWSNT | 868 | #ifdef WINDOWSNT |
| 869 | /* X:\xxx is always absolute. */ | 869 | /* X:\xxx is always absolute. */ |
| 870 | if (isalpha (filename[0]) | 870 | if (isalpha ((unsigned char) filename[0]) |
| 871 | && filename[1] == ':' && (filename[2] == '\\' || filename[2] == '/')) | 871 | && filename[1] == ':' && (filename[2] == '\\' || filename[2] == '/')) |
| 872 | return TRUE; | 872 | return TRUE; |
| 873 | 873 | ||