Linux install and uninstall seem to work.

This commit is contained in:
Adam Ierymenko
2013-11-08 17:37:47 -05:00
parent 15375ef6b9
commit 165bc589fd
7 changed files with 28 additions and 15 deletions

View File

@@ -69,8 +69,8 @@ int main(int argc,char **argv)
for(int i=0;i<complen;++i) {
if (!(i % 15))
std::cout << std::endl << '\t';
Utils::snprintf(tmp,sizeof(tmp),"%.2x",(unsigned int)compbuf[i]);
std::cout << "0x" << tmp;
Utils::snprintf(tmp,sizeof(tmp),"0x%.2x",(unsigned int)compbuf[i]);
std::cout << tmp;
if (i != (complen - 1))
std::cout << ',';
}