diff options
Diffstat (limited to 'libpiano/src/crypt.c')
-rw-r--r-- | libpiano/src/crypt.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libpiano/src/crypt.c b/libpiano/src/crypt.c index dc5bf7b..8111547 100644 --- a/libpiano/src/crypt.c +++ b/libpiano/src/crypt.c @@ -48,8 +48,7 @@ void PianoHexToInts (const char *strHex, unsigned int **retInts, sscanf (hexInt, "%x", &arrInts[i/8]); } *retInts = arrInts; - /* FIXME: copy & waste */ - *retIntsN = strHexN / 8, sizeof (*arrInts); + *retIntsN = strHexN / 8; } /* decipher int array; reverse engineered from pandora source |