View Single Post
Old 01-27-2009, 12:41 AM   #7
pljones
Human being with feelings
 
pljones's Avatar
 
Join Date: Aug 2007
Location: London, UK
Posts: 768
Default

Quote:
Originally Posted by HatHead View Post
Here is the compile reporting, I note a few cryptic error messages:
...
g++ -O2 -s -Wall -pthread -c -o ../../WDL/sha.o ../../WDL/sha.cpp
../../WDL/sha.cpp: In member function `void WDL_SHA1::reset()':
../../WDL/sha.cpp:68: warning: comparison between signed and unsigned integer
expressions
g++ -O2 -s -Wall -pthread -c -o ../mpb.o ../mpb.cpp
../mpb.cpp:889:2: warning: no newline at end of file
...
Nothing crypytic and no errors. Comparing a signed variable (one that can go from, say -128 to 127) with an unsigned variable (0 to 256) generates a useful warning. Telling you there's no newline on the end of a file is also potentially useful, if that file got truncated somewhere. However, here, there isn't a problem.

Your compile is fine.

Have you done anything yet to prove that changes to the config file you think you're using are affecting NINJAM when you run it? For example, changing the licence file?
__________________
Quote:
Originally Posted by Tony Williams
...Playing fast around the drums is one thing. But to play with people for others, to listen to, that's something else. That's a whole other world.
pljones is offline   Reply With Quote