Skip to content

Commit

Permalink
Fix #2795
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarofe authored and radare committed Jun 20, 2015
1 parent 29b228a commit 2595abc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libr/core/cmd_type.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ static int cmd_type(void *data, const char *input) {
char *q, *p, *o, *e;
p = o = strdup (input+1);
for (;;) {
if (*p == '\0'){
eprintf ("Usage: ts <k>=<v> Set fields at curseek linked type\n");
break;
}
q = strchr (p, ' ');
if (q) *q = 0;
if (!*p) {
Expand Down

0 comments on commit 2595abc

Please sign in to comment.