From 35207e259ef44f62faf71acc4bbc7d43311a4583 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Mon, 25 Sep 2017 15:56:57 -0400 Subject: string-util: use size_t for strjoina macro (#6914) `strlen` returns a `size_t` and `alloca` expects a `size_t`. --- src/basic/string-util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/basic/string-util.h') diff --git a/src/basic/string-util.h b/src/basic/string-util.h index 34eb952ce9..c511aeee68 100644 --- a/src/basic/string-util.h +++ b/src/basic/string-util.h @@ -120,7 +120,7 @@ char *strjoin_real(const char *x, ...) _sentinel_; ({ \ const char *_appendees_[] = { a, __VA_ARGS__ }; \ char *_d_, *_p_; \ - int _len_ = 0; \ + size_t _len_ = 0; \ unsigned _i_; \ for (_i_ = 0; _i_ < ELEMENTSOF(_appendees_) && _appendees_[_i_]; _i_++) \ _len_ += strlen(_appendees_[_i_]); \ -- cgit v1.2.1