mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-08-31 19:51:18 +02:00
Merge pull request #51
364fde6
fix unsigned warning in num_gmp_impl.h (caktux)
This commit is contained in:
@@ -298,7 +298,7 @@ void static secp256k1_num_set_hex(secp256k1_num_t *r, const char *a, int alen) {
|
||||
0, 0, 0, 0, 0, 0, 0,0,0,0,0,0,0,0,0,0,
|
||||
0, 0, 0, 0, 0, 0, 0,0,0,0,0,0,0,0,0,0
|
||||
};
|
||||
char num[257] = {};
|
||||
unsigned char num[257] = {};
|
||||
for (int i=0; i<alen; i++) {
|
||||
num[i] = cvt[a[i]];
|
||||
}
|
||||
|
Reference in New Issue
Block a user