From: H. Peter Anvin Date: Sun, 20 Jul 2025 06:47:22 +0000 (-0700) Subject: tools/virtio: replace "__auto_type" with "auto" X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4ecc26fa585216f98d71411ce182f9e823d94c8c;p=thirdparty%2Flinux.git tools/virtio: replace "__auto_type" with "auto" Replace one instance of "__auto_type" with "auto" in: tools/virtio/linux/compiler.h This file *does* include directly, so there is no need to duplicate the definition. Signed-off-by: H. Peter Anvin (Intel) --- diff --git a/tools/virtio/linux/compiler.h b/tools/virtio/linux/compiler.h index 204ef0e9f5423..725b93bfeee17 100644 --- a/tools/virtio/linux/compiler.h +++ b/tools/virtio/linux/compiler.h @@ -31,7 +31,7 @@ */ #define data_race(expr) \ ({ \ - __auto_type __v = (expr); \ + auto __v = (expr); \ __v; \ })