mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
89b53c9312
- Add devinput driver (/dev/input/eventX, -H devinput) in preparation for upcoming webcamd update that will support it. - Fix build with clang, and a few bugs it found too.
21 lines
978 B
C
21 lines
978 B
C
--- daemons/lircd.c.orig
|
|
+++ daemons/lircd.c
|
|
@@ -1318,7 +1318,7 @@ int send_remote(int fd, char *message, s
|
|
|
|
codes = remote->codes;
|
|
while (codes->name != NULL) {
|
|
- len = snprintf(buffer, PACKET_SIZE, "%016llx %s\n", codes->code, codes->name);
|
|
+ len = snprintf(buffer, PACKET_SIZE, "%016llx %s\n", (unsigned long long)codes->code, codes->name);
|
|
if (len >= PACKET_SIZE + 1) {
|
|
len = sprintf(buffer, "code_too_long\n");
|
|
}
|
|
@@ -1338,7 +1338,7 @@ int send_name(int fd, char *message, str
|
|
(write_socket_len(fd, protocol_string[P_BEGIN]) && write_socket_len(fd, message)
|
|
&& write_socket_len(fd, protocol_string[P_SUCCESS]) && write_socket_len(fd, protocol_string[P_DATA])))
|
|
return (0);
|
|
- len = snprintf(buffer, PACKET_SIZE, "1\n%016llx %s\n", code->code, code->name);
|
|
+ len = snprintf(buffer, PACKET_SIZE, "1\n%016llx %s\n", (unsigned long long)code->code, code->name);
|
|
if (len >= PACKET_SIZE + 1) {
|
|
len = sprintf(buffer, "1\ncode_too_long\n");
|
|
}
|