Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions encoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,8 @@ static void set_format(scanner_t* scanner, int ecl, byte mask)

void qrc_encode(scanner_t* scanner, const char* data)
{
char *black_block_char = scanner->use_netpbm ? "1 " : "██";
char *white_block_char = scanner->use_netpbm ? "0 " : " ";
char *black_block_char = scanner->use_netpbm ? "1 " : " ";
char *white_block_char = scanner->use_netpbm ? "0 " : "██";
// generate bit stream
stream_t stream;
stream.a = 0;
Expand Down