mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
* emacsclient.c (set_local_socket): Fix a compiler warning.
Fixes: debbugs:7838
This commit is contained in:
parent
6d41a41d81
commit
dd1ff7c09a
2 changed files with 5 additions and 1 deletions
|
|
@ -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>
|
2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
|
||||||
|
|
||||||
Support higher-resolution time stamps (Bug#9000).
|
Support higher-resolution time stamps (Bug#9000).
|
||||||
|
|
|
||||||
|
|
@ -1278,7 +1278,7 @@ set_local_socket (const char *local_socket_name)
|
||||||
if (n > 0)
|
if (n > 0)
|
||||||
{
|
{
|
||||||
tmpdir = tmpdir_storage = xmalloc (n);
|
tmpdir = tmpdir_storage = xmalloc (n);
|
||||||
confstr (_CS_DARWIN_USER_TEMP_DIR, tmpdir, n);
|
confstr (_CS_DARWIN_USER_TEMP_DIR, tmpdir_storage, n);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue