summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/run/run.c1
-rw-r--r--src/shared/path-util.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/run/run.c b/src/run/run.c
index da8c788ee..18a4920f0 100644
--- a/src/run/run.c
+++ b/src/run/run.c
@@ -28,6 +28,7 @@
#include "strv.h"
#include "build.h"
#include "unit-name.h"
+#include "path-util.h"
static bool arg_scope = false;
static bool arg_user = false;
diff --git a/src/shared/path-util.c b/src/shared/path-util.c
index 8e108db53..45099eeda 100644
--- a/src/shared/path-util.c
+++ b/src/shared/path-util.c
@@ -456,7 +456,7 @@ int find_binary(const char *name, char **filename) {
FOREACH_WORD_SEPARATOR(w, l, path, ":", state) {
char *p;
- if (asprintf(&p, "%.*s/%s", l, w, name) < 0)
+ if (asprintf(&p, "%.*s/%s", (int) l, w, name) < 0)
return -ENOMEM;
if (access(p, X_OK) < 0) {