]> git.eshelyaron.com Git - emacs.git/commitdiff
Simplify xd_signature to pacify GCC 9
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 3 May 2019 19:14:38 +0000 (12:14 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 3 May 2019 19:17:31 +0000 (12:17 -0700)
* src/dbusbind.c (xd_signature): Use simpler way to set up
the subsignature.  This also pacifies GCC 9 on Fedora 30 x86-64.

src/dbusbind.c

index 0afae6b05ad9e6c5d27ee77304ed85faa24cb26f..850d176c08fb3ab3f3e1839730214f026bffd417 100644 (file)
@@ -346,7 +346,6 @@ xd_signature (char *signature, int dtype, int parent_type, Lisp_Object object)
   int subtype;
   Lisp_Object elt;
   char const *subsig;
-  int subsiglen;
   char x[DBUS_MAXIMUM_SIGNATURE_LENGTH];
 
   elt = object;
@@ -430,10 +429,9 @@ xd_signature (char *signature, int dtype, int parent_type, Lisp_Object object)
          elt = CDR_SAFE (XD_NEXT_VALUE (elt));
        }
 
-      subsiglen = snprintf (signature, DBUS_MAXIMUM_SIGNATURE_LENGTH,
-                           "%c%s", dtype, subsig);
-      if (! (0 <= subsiglen && subsiglen < DBUS_MAXIMUM_SIGNATURE_LENGTH))
-       string_overflow ();
+      signature[0] = dtype;
+      signature[1] = '\0';
+      xd_signature_cat (signature, subsig);
       break;
 
     case DBUS_TYPE_VARIANT: