Bitcoin Forum
July 02, 2024, 11:25:25 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 [49] 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 »
961  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XC][XCurrency] Decentralised Trustless Privacy Platform / Encrypted XChat / Pos on: August 18, 2014, 08:05:20 AM
Hello XC community, I buy some Xc, but now I have one question.

When I Compile the wallet (ubuntu) I get some warnings (Algo files):

Quote
simd.c:1565:5: warning: invalid conversion from ‘void*’ to ‘sph_simd_small_context*’ [-fpermissive]
  sc = cc;
     ^
simd.c: In function ‘void init_big(void*, const u32*)’:
simd.c:1576:5: warning: invalid conversion from ‘void*’ to ‘sph_simd_big_context*’ [-fpermissive]
  sc = cc;
     ^
simd.c: In function ‘void update_small(void*, const void*, size_t)’:
simd.c:1587:5: warning: invalid conversion from ‘void*’ to ‘sph_simd_small_context*’ [-fpermissive]
  sc = cc;
     ^
simd.c: In function ‘void update_big(void*, const void*, size_t)’:
simd.c:1612:5: warning: invalid conversion from ‘void*’ to ‘sph_simd_big_context*’ [-fpermissive]
  sc = cc;
 
 
blake.c: In function ‘void blake64_close(sph_blake_big_context*, unsigned int, unsigned int, void*, size_t)’:
blake.c:991:6: warning: invalid conversion from ‘void*’ to ‘unsigned char*’ [-fpermissive]
  out = dst;
                                         ^
blake.c:791:1: warning:   initializing argument 1 of ‘void blake32_init(sph_blake_small_context*, const sph_u32*, const sph_u32*)’ [-fpermissive]
 blake32_init(sph_blake_small_context *sc,
 ^
blake.c: In function ‘void sph_blake224(void*, const void*, size_t)’:
blake.c:1009:23: warning: invalid conversion from ‘void*’ to ‘sph_blake_small_context*’ [-fpermissive]
  blake32(cc, data, len);
 
groestl.c: In function ‘void groestl_big_close(sph_groestl_big_context*, unsigned int, unsigned int, void*, size_t)’:
groestl.c:2952:17: warning: variable ‘buf’ set but not used [-Wunused-but-set-variable]
  unsigned char *buf;
                 ^
groestl.c: In function ‘void sph_groestl224_init(void*)’:
groestl.c:3013:28: warning: invalid conversion from ‘void*’ to ‘sph_groestl_small_context*’ [-fpermissive]

etc
etc
etc
for jk, keccak, skein etc etc

It's normal?



Someone can help me? Thanks xc community!
No idea? any one else know what's up with this?

Seems these are generic X11 codes and the issue is that they didn't do an explicit cast from void * to each of the individual hashing function required type.     

Does the wallet work though?  If so, I don't think it's a big issue.

Yes, the wallet works perfectly... But why these warnings?
962  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XC][XCurrency] Decentralised Trustless Privacy Platform / Encrypted XChat / Pos on: August 17, 2014, 11:46:04 PM
Hello XC community, I buy some Xc, but now I have one question.

When I Compile the wallet (ubuntu) I get some warnings (Algo files):

Quote
simd.c:1565:5: warning: invalid conversion from ‘void*’ to ‘sph_simd_small_context*’ [-fpermissive]
  sc = cc;
     ^
simd.c: In function ‘void init_big(void*, const u32*)’:
simd.c:1576:5: warning: invalid conversion from ‘void*’ to ‘sph_simd_big_context*’ [-fpermissive]
  sc = cc;
     ^
simd.c: In function ‘void update_small(void*, const void*, size_t)’:
simd.c:1587:5: warning: invalid conversion from ‘void*’ to ‘sph_simd_small_context*’ [-fpermissive]
  sc = cc;
     ^
simd.c: In function ‘void update_big(void*, const void*, size_t)’:
simd.c:1612:5: warning: invalid conversion from ‘void*’ to ‘sph_simd_big_context*’ [-fpermissive]
  sc = cc;
 
 
blake.c: In function ‘void blake64_close(sph_blake_big_context*, unsigned int, unsigned int, void*, size_t)’:
blake.c:991:6: warning: invalid conversion from ‘void*’ to ‘unsigned char*’ [-fpermissive]
  out = dst;
                                         ^
blake.c:791:1: warning:   initializing argument 1 of ‘void blake32_init(sph_blake_small_context*, const sph_u32*, const sph_u32*)’ [-fpermissive]
 blake32_init(sph_blake_small_context *sc,
 ^
blake.c: In function ‘void sph_blake224(void*, const void*, size_t)’:
blake.c:1009:23: warning: invalid conversion from ‘void*’ to ‘sph_blake_small_context*’ [-fpermissive]
  blake32(cc, data, len);
 
groestl.c: In function ‘void groestl_big_close(sph_groestl_big_context*, unsigned int, unsigned int, void*, size_t)’:
groestl.c:2952:17: warning: variable ‘buf’ set but not used [-Wunused-but-set-variable]
  unsigned char *buf;
                 ^
groestl.c: In function ‘void sph_groestl224_init(void*)’:
groestl.c:3013:28: warning: invalid conversion from ‘void*’ to ‘sph_groestl_small_context*’ [-fpermissive]

etc
etc
etc
for jk, keccak, skein etc etc

It's normal?



Someone can help me? Thanks xc community!
963  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XC][XCurrency] Decentralised Trustless Privacy Platform / Encrypted XChat / Pos on: August 17, 2014, 10:37:59 PM
Hello XC community, I buy some Xc, but now I have one question.

When I Compile the wallet (ubuntu) I get some warnings (Algo files):

Quote
simd.c:1565:5: warning: invalid conversion from ‘void*’ to ‘sph_simd_small_context*’ [-fpermissive]
  sc = cc;
     ^
simd.c: In function ‘void init_big(void*, const u32*)’:
simd.c:1576:5: warning: invalid conversion from ‘void*’ to ‘sph_simd_big_context*’ [-fpermissive]
  sc = cc;
     ^
simd.c: In function ‘void update_small(void*, const void*, size_t)’:
simd.c:1587:5: warning: invalid conversion from ‘void*’ to ‘sph_simd_small_context*’ [-fpermissive]
  sc = cc;
     ^
simd.c: In function ‘void update_big(void*, const void*, size_t)’:
simd.c:1612:5: warning: invalid conversion from ‘void*’ to ‘sph_simd_big_context*’ [-fpermissive]
  sc = cc;
 
 
blake.c: In function ‘void blake64_close(sph_blake_big_context*, unsigned int, unsigned int, void*, size_t)’:
blake.c:991:6: warning: invalid conversion from ‘void*’ to ‘unsigned char*’ [-fpermissive]
  out = dst;
                                         ^
blake.c:791:1: warning:   initializing argument 1 of ‘void blake32_init(sph_blake_small_context*, const sph_u32*, const sph_u32*)’ [-fpermissive]
 blake32_init(sph_blake_small_context *sc,
 ^
blake.c: In function ‘void sph_blake224(void*, const void*, size_t)’:
blake.c:1009:23: warning: invalid conversion from ‘void*’ to ‘sph_blake_small_context*’ [-fpermissive]
  blake32(cc, data, len);
 
groestl.c: In function ‘void groestl_big_close(sph_groestl_big_context*, unsigned int, unsigned int, void*, size_t)’:
groestl.c:2952:17: warning: variable ‘buf’ set but not used [-Wunused-but-set-variable]
  unsigned char *buf;
                 ^
groestl.c: In function ‘void sph_groestl224_init(void*)’:
groestl.c:3013:28: warning: invalid conversion from ‘void*’ to ‘sph_groestl_small_context*’ [-fpermissive]

etc
etc
etc
for jk, keccak, skein etc etc

It's normal?

964  Local / Trading, analisi e speculazione / Re: [SPECULAZIONE][PAG]Alt-Currencies PUMP! on: August 16, 2014, 03:21:07 PM
Scam artists.
965  Local / Trading, analisi e speculazione / Re: cerco guida per imparare on: August 13, 2014, 11:24:06 AM
Eh prima di imparare ne devi bruciare di btc...  Cheesy
966  Other / Off-topic / Re: What would you do if you received 20 bitcoins? on: August 12, 2014, 09:33:07 PM
Party hard with the bitch's.
967  Local / Trading, analisi e speculazione / Re: [SPECULAZIONE][PAG]Alt-Currencies PUMP! on: August 12, 2014, 08:19:25 PM
Credo voglia dire che non sia stata una sola persona...
968  Local / Trading, analisi e speculazione / Re: [SPECULAZIONE][PAG]Alt-Currencies PUMP! on: August 12, 2014, 03:36:19 PM
Chissŕ in futuro... chissŕ...
969  Local / Italiano (Italian) / Re: creare 10 wallet sicuri on: August 11, 2014, 11:12:45 AM
100 min
970  Local / Italiano (Italian) / Re: creare 10 wallet sicuri on: August 11, 2014, 10:16:31 AM
lol.

971  Other / Off-topic / Re: IF YOU HAD 1,000,000 DOLLARS WHAT WOULD YOU BUY??? on: August 10, 2014, 12:50:39 PM
This for 745.000$

http://www.superyachts.com/luxury-yacht-for-sale/sayang-2265/



And party hard with the bitch's.
972  Other / Off-topic / Re: IF YOU HAD 1,000,000 DOLLARS WHAT WOULD YOU BUY??? on: August 10, 2014, 12:28:43 PM
Yacht n bitch's
973  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [CLD] XCloudcoin | Beta Invites | Profit Share 14% | 1 Millon coins on: August 10, 2014, 09:48:22 AM
This coin make me rich. Thanks xcloud and dev.
974  Alternate cryptocurrencies / Altcoin Discussion / Re: What happened to the ESPORTS Coin thread? on: August 08, 2014, 08:43:34 AM
Where is the dev?

975  Alternate cryptocurrencies / Altcoin Discussion / Re: What happened to the ESPORTS Coin thread? on: August 08, 2014, 08:11:42 AM
Scumcoin?
976  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★ KoreCoin v2.0 ★★ [KORE] New ERA - 100% ANON - 100% PoS - PoBAnon - TOR - DICE on: August 07, 2014, 06:14:44 PM
So...5 weeks to release? PoBA and AnonVoip. Moon target.
977  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★ KoreCoin v2.0 ★★ [KORE] New ERA - 100% ANON - 100% PoS - PoBAnon - TOR - DICE on: August 07, 2014, 09:47:17 AM
Yep sorry.... SUPER EASY.
978  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★ KoreCoin v2.0 ★★ [KORE] New ERA - 100% ANON - 100% PoS - PoBAnon - TOR - DICE on: August 07, 2014, 09:19:51 AM
POBA and VoIP next releases and current price is 9K?
So cheap!  Cheesy

I've never seen a coin so cheap.

- PoBA (Proof of burn anonymous)
- ANON VOIP
- ANDROID and IOS CLIENT
 
1.000.000 POW coins only.

979  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★ KoreCoin v2.0 ★★ [KORE] New ERA - 100% ANON - 100% PoS - PoBAnon - TOR - DICE on: August 06, 2014, 10:09:55 PM
Cheap coins! Christams!!!
980  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★ KoreCoin v2.0 ★★ [KORE] New ERA - 100% ANON - 100% PoS - PoBAnon - TOR - DICE on: August 06, 2014, 02:25:40 PM
7k sat. Cheap coins. Christmas?
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 [49] 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!