Browse Source

Missed one

zhibog 5 years ago
parent
commit
694ee02247
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/encoding/base32/base32.odin

+ 1 - 1
core/encoding/base32/base32.odin

@@ -95,7 +95,7 @@ decode :: proc(data: string, DEC_TBL := DEC_TABLE, allocator := context.allocato
     if len(data) == 0 do return []byte{};
 
     outi := 0;
-	olen := len(data);
+    olen := len(data);
     data := data;
 
     out := make([]byte, len(data) / 8 * 5, allocator);