aboutsummaryrefslogtreecommitdiffstats
path: root/src/sccp.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-05-08 08:51:28 +0200
committerHarald Welte <laforge@gnumonks.org>2011-05-08 09:43:49 +0200
commitd35a3079df9501a36062d44b460f3fe2bec20032 (patch)
tree2844391f0432176e57368c884414521ad4541aef /src/sccp.c
parent2d97000f98d5c80aebb72ea601f0cefb3350a914 (diff)
namespace: use osmo_static_assert() instead of static_assert()
Diffstat (limited to 'src/sccp.c')
-rw-r--r--src/sccp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sccp.c b/src/sccp.c
index 0b3e3d2..2556e16 100644
--- a/src/sccp.c
+++ b/src/sccp.c
@@ -1366,7 +1366,7 @@ int sccp_set_read(const struct sockaddr_sccp *sock,
return 0;
}
-static_assert(sizeof(struct sccp_source_reference) <= sizeof(uint32_t), enough_space);
+osmo_static_assert(sizeof(struct sccp_source_reference) <= sizeof(uint32_t), enough_space);
uint32_t sccp_src_ref_to_int(struct sccp_source_reference *ref)
{