Skip to content

Commit

Permalink
BuildErrors: Address build errors in Ubuntu 10.04
Browse files Browse the repository at this point in the history
Delete executable from repository
  • Loading branch information
Peter Degen-Portnoy committed Aug 27, 2013
1 parent 51d9def commit 8905994
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.swp
Binary file removed ApiExample.cpp/bin/ApiExample
Binary file not shown.
1 change: 1 addition & 0 deletions ApiExample.cpp/src/HTTPDownload.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "HTTPDownload.h"

#include <cstdlib>
#include <iostream>
#include <sstream>
#include <map>
Expand Down
1 change: 1 addition & 0 deletions ApiExample.cpp/src/TCPSocket.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "TCPSocket.h"
#include "main.h"
#include <cstring>


#define RESPONSE_MAX_SIZE 65536
Expand Down
2 changes: 1 addition & 1 deletion ApiExample.cpp/src/md5.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ char *MD5::hex_digest(){
if (!finalized){
cerr << "MD5::hex_digest: Can't get digest if you haven't "<<
"finalized the digest!" <<endl;
return "";
return (char*)"";
}

for (i=0; i<16; i++)
Expand Down

0 comments on commit 8905994

Please sign in to comment.