Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/netlog/netlog-conf.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ int config_parse_netlog_remote_address(const char *unit,
void *data,
void *userdata) {
Manager *m = userdata;
char *e;
const char *e;
int r;

assert(filename);
Expand Down
3 changes: 2 additions & 1 deletion src/share/path-util.c
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,8 @@ bool path_is_safe(const char *p) {
}

char *file_in_same_dir(const char *path, const char *filename) {
char *e, *ret;
const char *e;
char *ret;
size_t k;

assert(path);
Expand Down
3 changes: 2 additions & 1 deletion src/share/socket-util.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
#include "util.h"

int socket_address_parse(SocketAddress *a, const char *s) {
char *e, *n;
const char *e;
char *n;
unsigned u;
int r;

Expand Down
Loading