View Single Post
Old 01-09-2009, 08:40 PM   #7
llasram
Reticulator of Tharn
llasram ought to be getting tired of karma fortunes by now.llasram ought to be getting tired of karma fortunes by now.llasram ought to be getting tired of karma fortunes by now.llasram ought to be getting tired of karma fortunes by now.llasram ought to be getting tired of karma fortunes by now.llasram ought to be getting tired of karma fortunes by now.llasram ought to be getting tired of karma fortunes by now.llasram ought to be getting tired of karma fortunes by now.llasram ought to be getting tired of karma fortunes by now.llasram ought to be getting tired of karma fortunes by now.llasram ought to be getting tired of karma fortunes by now.
 
llasram's Avatar
 
Posts: 618
Karma: 400000
Join Date: Jan 2007
Location: EST
Device: Sony PRS-505
Quote:
Originally Posted by nrapallo View Post
I think this compile under 8.10 picked up a typo in the file dev1150.h, line 21, which currently is:
Code:
#include <string>
but should be:
Code:
#include <string.h>
If this is C++ which uses strcmp(), it quite likely wants both <string> (the C++ standard string class) and <string.h> (ISO C NUL terminated char "string" manipulation functions, such as strcmp()).
llasram is offline   Reply With Quote