Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2023-11-28 12:54:53 +0300
committerFelix Fietkau <nbd@nbd.name>2023-11-28 12:54:54 +0300
commitb77f2a4ce9034d4341668bb61ca55fc177ee7729 (patch)
tree8c708a57e17f75f0a422f23b0b71baeeb4cce9c9 /uloop.h
parentd4c3066e7c5efa5f395c21db77609516d386cbf8 (diff)
uloop: fix build using C++ compilers
Rename the 'private' field to 'priv' in order to avoid using a C++ keyword Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'uloop.h')
-rw-r--r--uloop.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/uloop.h b/uloop.h
index 5edeb70..4313dfe 100644
--- a/uloop.h
+++ b/uloop.h
@@ -98,7 +98,7 @@ struct uloop_interval
int64_t fired;
unsigned int msecs;
} time;
- } private;
+ } priv;
};
struct uloop_signal