diff options
| author | Ahmad Khalifa <vexeduxr@FreeBSD.org> | 2025-09-09 03:54:24 +0000 |
|---|---|---|
| committer | Ahmad Khalifa <vexeduxr@FreeBSD.org> | 2025-09-09 03:54:24 +0000 |
| commit | 54cc3da443da7e4a8a483d1fe46071382ff06ed0 (patch) | |
| tree | a87632208c0957af8219f0f5db28b5e9dc94c427 | |
| parent | b0474e14895908f45c64158b0e558236923b8eb2 (diff) | |
moused: fix GCC build
error: 'static' is not at beginning of declaration [-Werror=old-style-declaration]
| -rw-r--r-- | usr.sbin/moused/moused/moused.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/moused/moused/moused.c b/usr.sbin/moused/moused/moused.c index 33bcf359a1a0..acd6e5223685 100644 --- a/usr.sbin/moused/moused/moused.c +++ b/usr.sbin/moused/moused/moused.c @@ -1155,7 +1155,7 @@ pause_mouse(__unused int sig) static int connect_devd(void) { - const static struct sockaddr_un sa = { + static const struct sockaddr_un sa = { .sun_family = AF_UNIX, .sun_path = "/var/run/devd.seqpacket.pipe", }; |
