]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix format specifiers in tramp-adb.el
authorHayden Shenk <hayden.shenk@zetier.com>
Thu, 26 May 2022 16:09:56 +0000 (18:09 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Thu, 26 May 2022 16:09:56 +0000 (18:09 +0200)
* lisp/net/tramp-adb.el (tramp-adb-get-device): Fix format
specifiers for port.  (Bug#55651)

Copyright-paperwork-exempt: yes

lisp/net/tramp-adb.el

index aa0f558a2b6255092b4a3efd34bbe1750f99a170..1fe10a560b11a4d7186318a07b9f2dadcc5b9ebe 100644 (file)
@@ -1112,9 +1112,9 @@ E.g. a host name \"192.168.1.1#5555\" returns \"192.168.1.1:5555\"
        tramp-prefix-port-format ":"
        (cond ((member host devices) host)
             ;; This is the case when the host is connected to the default port.
-            ((member (format "%s%s%d" host tramp-prefix-port-format port)
+            ((member (format "%s%s%s" host tramp-prefix-port-format port)
                      devices)
-             (format "%s:%d" host port))
+             (format "%s:%s" host port))
             ;; An empty host name shall be mapped as well, when there
             ;; is exactly one entry in `devices'.
             ((and (zerop (length host)) (= (length devices) 1))