forked from pool/gnome-control-center
27 lines
706 B
Diff
27 lines
706 B
Diff
|
From 92b50d6037ff4d6ccd888beb5b01b55c50bc33ed Mon Sep 17 00:00:00 2001
|
||
|
From: Mike Gorse <mgorse@suse.com>
|
||
|
Date: Thu, 9 Jan 2020 14:11:40 -0600
|
||
|
Subject: [PATCH] Thunderbolt: make BoltError enum a typedef
|
||
|
|
||
|
Fixes error when compiled with -fno-common
|
||
|
---
|
||
|
panels/thunderbolt/bolt-error.h | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/panels/thunderbolt/bolt-error.h b/panels/thunderbolt/bolt-error.h
|
||
|
index 39b3eee98..7d3823d35 100644
|
||
|
--- a/panels/thunderbolt/bolt-error.h
|
||
|
+++ b/panels/thunderbolt/bolt-error.h
|
||
|
@@ -31,7 +31,7 @@ G_BEGIN_DECLS
|
||
|
*
|
||
|
* Error codes used inside Bolt.
|
||
|
*/
|
||
|
-enum {
|
||
|
+typedef enum {
|
||
|
BOLT_ERROR_FAILED = 0,
|
||
|
BOLT_ERROR_UDEV,
|
||
|
BOLT_ERROR_NOKEY,
|
||
|
--
|
||
|
2.24.1
|
||
|
|