mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-30 13:47:23 +01:00
[Cosmetic] Apply codestyle "XXX * " and "XXX *" changed to "XXX* " (with some exceptions)
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user