aboutsummaryrefslogtreecommitdiff
path: root/src/commands.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/commands.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/commands.c b/src/commands.c
index 13405b7..8666278 100644
--- a/src/commands.c
+++ b/src/commands.c
@@ -525,8 +525,11 @@ cleanup_exec(CommandArgs *args)
525static void 525static void
526unniss_exec(CommandArgs *args) 526unniss_exec(CommandArgs *args)
527{ 527{
528 unniss(args->scramble); 528 Alg *aux;
529 print_alg(args->scramble, false); 529
530 aux = unniss(args->scramble);
531 print_alg(aux, false);
532 free(aux);
530} 533}
531 534
532static void 535static void

Generated with cgit - Back to sebastiano.tronto.net