[Cosmetic] Apply codestyle "XXX * " and "XXX *" changed to "XXX* " (with some exceptions)

This commit is contained in:
Spp
2011-09-15 14:08:17 +02:00
parent 9006e4e8dc
commit af05915b9e
431 changed files with 3131 additions and 3131 deletions

View File

@@ -147,11 +147,11 @@ typedef struct AuthHandler
class PatcherRunnable: public ACE_Based::Runnable
{
public:
PatcherRunnable(class AuthSocket *);
PatcherRunnable(class AuthSocket* );
void run();
private:
AuthSocket * mySocket;
AuthSocket* mySocket;
};
typedef struct PATCH_INFO
@@ -948,7 +948,7 @@ bool AuthSocket::_HandleXferAccept()
return true;
}
PatcherRunnable::PatcherRunnable(class AuthSocket * as)
PatcherRunnable::PatcherRunnable(class AuthSocket* as)
{
mySocket = as;
}
@@ -1016,7 +1016,7 @@ void Patcher::LoadPatchMD5(char *szFileName)
// Try to open the patch file
std::string path = "./patches/";
path += szFileName;
FILE *pPatch = fopen(path.c_str(), "rb");
FILE* pPatch = fopen(path.c_str(), "rb");
sLog->outDebug(LOG_FILTER_NETWORKIO, "Loading patch info from %s\n", path.c_str());
if (!pPatch)