emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r108716: * emacsclient.c (set_local_s


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r108716: * emacsclient.c (set_local_socket): Fix a compiler warning.
Date: Sun, 24 Jun 2012 17:43:09 +0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108716
fixes bug: http://debbugs.gnu.org/7838
author: Samuel Bronson <address@hidden>
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Sun 2012-06-24 17:43:09 +0800
message:
  * emacsclient.c (set_local_socket): Fix a compiler warning.
modified:
  lib-src/ChangeLog
  lib-src/emacsclient.c
=== modified file 'lib-src/ChangeLog'
--- a/lib-src/ChangeLog 2012-06-23 17:32:27 +0000
+++ b/lib-src/ChangeLog 2012-06-24 09:43:09 +0000
@@ -1,3 +1,7 @@
+2012-06-24  Samuel Bronson  <address@hidden>  (tiny change)
+
+       * emacsclient.c (set_local_socket): Fix compiler warning (Bug#7838).
+
 2012-06-22  Paul Eggert  <address@hidden>
 
        Support higher-resolution time stamps (Bug#9000).

=== modified file 'lib-src/emacsclient.c'
--- a/lib-src/emacsclient.c     2012-05-05 04:32:58 +0000
+++ b/lib-src/emacsclient.c     2012-06-24 09:43:09 +0000
@@ -1278,7 +1278,7 @@
             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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]