fixing type in sdbforce that lead to brocken t

This commit is contained in:
oddcoder 2016-03-22 22:14:20 +02:00 committed by pancake
parent cf7a751fc5
commit 9c8253dd22

View File

@ -26,7 +26,7 @@ static void show_help(RCore *core) {
}
static int sdbforcb(void *p, const char *k, const char *v) {
if (!strncmp (v, "type.", strlen ("type")+1))
if (!strncmp (v, "type", strlen ("type")+1))
r_cons_printf ("%s\n", k);
return 1;
}