X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Furi.c;h=a2a5038deb54d39df0aabe297af11b0644fa6005;hp=7fe4dd3b30af4796a855fb28cb83f5f4fca827ce;hb=7aa6679a7ac0f0935dfbe63f43f1901bc2395b16;hpb=44a411a6644868831d984267e3a553c2c0631c69 diff --git a/src/common/uri.c b/src/common/uri.c index 7fe4dd3b3..a2a5038de 100644 --- a/src/common/uri.c +++ b/src/common/uri.c @@ -61,7 +61,7 @@ static const struct uri_proto proto_uri[] = { * Return pointer to the character in s matching one of the characters in * accept. If nothing is found, return pointer to the end of string (eos). */ -static const inline char *strpbrk_or_eos(const char *s, const char *accept) +static inline const char *strpbrk_or_eos(const char *s, const char *accept) { char *p = strpbrk(s, accept); if (p == NULL) {