Skip to content

Commit

Permalink
Fix for the error handling of the "foreach task -R struct.member"
Browse files Browse the repository at this point in the history
format if an invalid structure and/or member is used as an argument.
Without the patch, the command will display the expected error
indicating "task: invalid structure member reference", but then will
be followed by a stream of "task: recursive temporary file usage"
error messages.
(anderson@redhat.com)
  • Loading branch information
Dave Anderson committed Jul 3, 2015
1 parent 0ab34ff commit c69e758
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion symbols.c
Expand Up @@ -7680,7 +7680,7 @@ parse_for_member_extended(struct datatype_member *dm,
free_structure(root);

if (!found)
error(FATAL, "invalid data structure member reference: %s\n",
error(INFO, "invalid data structure member reference: %s\n",
dm->member);
}

Expand Down

0 comments on commit c69e758

Please sign in to comment.