Browse Source

htable: close parentheses on error description

Henning Westerholt 7 months ago
parent
commit
024c649c36
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/modules/htable/htable.c

+ 1 - 1
src/modules/htable/htable.c

@@ -1561,7 +1561,7 @@ static void htable_rpc_delete(rpc_t *rpc, void *c)
 	int res;
 
 	if(rpc->scan(c, "SS", &htname, &keyname) < 2) {
-		rpc->fault(c, 500, "Not enough parameters (htable name & key name");
+		rpc->fault(c, 500, "Not enough parameters (htable name & key name)");
 		return;
 	}
 	ht = ht_get_table(&htname);