commit d9e565a4eb0d2e039b68b303e1a28e746d37877b
parent 31e4b9d7c7b168871d4fde2b9b21ce2d9878ec38
Author: Frederic Cambus <fred@statdns.com>
Date: Wed, 3 Oct 2018 12:51:30 +0200
Remove some debug ouput
Diffstat:
1 file changed, 0 insertions(+), 3 deletions(-)
diff --git a/src/loaders/ansi.c b/src/loaders/ansi.c
@@ -126,12 +126,10 @@ int ansilove_ansi(struct ansilove_ctx *ctx, struct ansilove_options *options)
// cursor position
if (ansi_sequence_character == 'H' || ansi_sequence_character == 'f') {
- printf("---\n");
// create substring from the sequence's content
seq_line = 1;
seq_column = 1;
seqGrab = strndup((char *)ctx->buffer + loop + 2, ansi_sequence_loop);
- printf("seqGrab: %s\n", seqGrab);
if (!strncmp(seqGrab, ";", 1)) {
seq_line = 1;
@@ -152,7 +150,6 @@ int ansilove_ansi(struct ansilove_ctx *ctx, struct ansilove_options *options)
// set the positions
row = seq_line-1;
column = seq_column-1;
- printf("Sequence H: %i,%i\n", row, column);
seqGrab = NULL;