uncrustify FEATURE all spacing connected to *
diff --git a/src/log.c b/src/log.c
index 4991622..1b4e229 100644
--- a/src/log.c
+++ b/src/log.c
@@ -413,7 +413,7 @@
         LY_CHECK_ERR_RET(!(*path), LOGMEM(ctx), LY_EMEM);
         break;
     case LY_VLOG_LINE:
-        rc = asprintf(path, "Line number %" PRIu64 ".", *((uint64_t*)elem));
+        rc = asprintf(path, "Line number %" PRIu64 ".", *((uint64_t *)elem));
         LY_CHECK_ERR_RET(rc == -1, LOGMEM(ctx), LY_EMEM);
         break;
     case LY_VLOG_LYSC:
@@ -436,7 +436,7 @@
 ly_vlog(const struct ly_ctx *ctx, enum LY_VLOG_ELEM elem_type, const void *elem, LY_VECODE code, const char *format, ...)
 {
     va_list ap;
-    char* path = NULL;
+    char *path = NULL;
     const struct ly_err_item *first;
 
     if (path_flag && (elem_type != LY_VLOG_NONE)) {