diff options
| author | Dwayne C. Litzenberger <[email protected]> | 2012-04-16 01:31:38 -0400 |
|---|---|---|
| committer | Dwayne C. Litzenberger <[email protected]> | 2012-04-18 00:33:32 -0400 |
| commit | a6fa147c8d2dabe9f226bb8e1bc5904718ef1fc1 (patch) | |
| tree | c23aeb69ea4426bad5537f38d0f548cf71577457 /src/util.cpp | |
| parent | Merge pull request #1118 from sipa/addbreaks (diff) | |
| download | discoin-a6fa147c8d2dabe9f226bb8e1bc5904718ef1fc1.tar.xz discoin-a6fa147c8d2dabe9f226bb8e1bc5904718ef1fc1.zip | |
Fix phexdigits[255] is undefined.
Diffstat (limited to 'src/util.cpp')
| -rw-r--r-- | src/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index ac65d417b..19e48d3bd 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -432,7 +432,7 @@ static char phexdigit[256] = 0,1,2,3,4,5,6,7,8,9,-1,-1,-1,-1,-1,-1, -1,0xa,0xb,0xc,0xd,0xe,0xf,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, - -1,0xa,0xb,0xc,0xd,0xe,0xf,-1,-1,-1,-1,-1,-1,-1,-1,-1 + -1,0xa,0xb,0xc,0xd,0xe,0xf,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, |