1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-31 11:13:50 +00:00

* emacsclient.c (set_local_socket): Fix a compiler warning.

Fixes: debbugs:7838
This commit is contained in:
Samuel Bronson 2012-06-24 17:43:09 +08:00 committed by Chong Yidong
parent 6d41a41d81
commit dd1ff7c09a
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2012-06-24 Samuel Bronson <naesten@gmail.com> (tiny change)
* emacsclient.c (set_local_socket): Fix compiler warning (Bug#7838).
2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
Support higher-resolution time stamps (Bug#9000).

View File

@ -1278,7 +1278,7 @@ set_local_socket (const char *local_socket_name)
if (n > 0)
{
tmpdir = tmpdir_storage = xmalloc (n);
confstr (_CS_DARWIN_USER_TEMP_DIR, tmpdir, n);
confstr (_CS_DARWIN_USER_TEMP_DIR, tmpdir_storage, n);
}
else
#endif