Skip to content

Commit 66f20c6

Browse files
committed
resolve BUGFIX wrong param in message
Fixes #1600
1 parent 0f3dc63 commit 66f20c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/resolve.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2355,7 +2355,7 @@ resolve_json_nodeid(const char *nodeid, const struct ly_ctx *ctx, const struct l
23552355
} else {
23562356
if (!mod_name) {
23572357
str = strndup(nodeid, (name + nam_len) - nodeid);
2358-
LOGVAL(ctx, LYE_PATH_MISSMOD, LY_VLOG_STR, nodeid);
2358+
LOGVAL(ctx, LYE_PATH_MISSMOD, LY_VLOG_STR, str);
23592359
free(str);
23602360
return NULL;
23612361
}

0 commit comments

Comments
 (0)