mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-04 12:36:30 +00:00
Small pf fix
This commit is contained in:
parent
0e659f03dd
commit
89d724889d
@ -315,7 +315,7 @@ static void cmd_print_format (RCore *core, const char *_input, int len) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (r_strht_get (core->print->formats, name) == NULL)
|
||||
if (strchr (name, '.') == NULL && r_strht_get (core->print->formats, name) == NULL)
|
||||
eprintf ("Warning: %s is not a valid format name\n", name);
|
||||
/* display a format */
|
||||
if (dot) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user