Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
dovholuknf committed Dec 16, 2024
1 parent 5a7ee4c commit 619d72a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion programs/ziti-edge-tunnel/config-utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ void update_identity_config(uv_loop_t *l, const char *identifier, const char *cf
}

char* resolve_directory(const char* path) {
char* resolved_path = (char*)malloc(PATH_MAX);
char *resolved_path = (char *) malloc(PATH_MAX);
if (access(path, F_OK) != -1) {
//means the file exists right where it is, use realpath and normalize it and continue
if (realpath(path, resolved_path) == NULL) {
Expand Down

0 comments on commit 619d72a

Please sign in to comment.