mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Attempt to fix compilation error on Linux
This commit is contained in:
parent
62c37a3481
commit
d12218e8da
3 changed files with 7 additions and 6 deletions
|
@ -283,7 +283,7 @@ SceNetAdhocctlScanInfo * findGroup(SceNetEtherAddr * MAC) {
|
|||
return group;
|
||||
}
|
||||
|
||||
void freeGroupsRecursive(SceNetAdhocctlScanInfo *& node) {
|
||||
void freeGroupsRecursive(SceNetAdhocctlScanInfo * node) {
|
||||
// End of List
|
||||
if (node == NULL) return;
|
||||
|
||||
|
@ -1095,7 +1095,7 @@ void notifyMatchingHandler(SceNetAdhocMatchingContext * context, ThreadMessage *
|
|||
__UpdateMatchingHandler(argsNew);
|
||||
}
|
||||
|
||||
void freeFriendsRecursive(SceNetAdhocctlPeerInfo *& node, int32_t* count) {
|
||||
void freeFriendsRecursive(SceNetAdhocctlPeerInfo * node, int32_t* count) {
|
||||
// End of List
|
||||
if (node == NULL) return;
|
||||
|
||||
|
@ -1108,7 +1108,7 @@ void freeFriendsRecursive(SceNetAdhocctlPeerInfo *& node, int32_t* count) {
|
|||
if (count != NULL) (*count)++;
|
||||
}
|
||||
|
||||
void timeoutFriendsRecursive(SceNetAdhocctlPeerInfo *& node, int32_t* count) {
|
||||
void timeoutFriendsRecursive(SceNetAdhocctlPeerInfo * node, int32_t* count) {
|
||||
// End of List
|
||||
if (node == NULL) return;
|
||||
|
||||
|
|
|
@ -940,7 +940,7 @@ SceNetAdhocctlScanInfo * findGroup(SceNetEtherAddr * MAC);
|
|||
/*
|
||||
* Deletes all groups in networks
|
||||
*/
|
||||
void freeGroupsRecursive(SceNetAdhocctlScanInfo *& node);
|
||||
void freeGroupsRecursive(SceNetAdhocctlScanInfo * node);
|
||||
|
||||
/**
|
||||
* Closes & Deletes all PDP Sockets
|
||||
|
@ -962,9 +962,9 @@ void deleteFriendByIP(uint32_t ip);
|
|||
* Recursive Memory Freeing-Helper for Friend-Structures
|
||||
* @param node Current Node in List
|
||||
*/
|
||||
void freeFriendsRecursive(SceNetAdhocctlPeerInfo *& node, int32_t* count);
|
||||
void freeFriendsRecursive(SceNetAdhocctlPeerInfo * node, int32_t* count);
|
||||
|
||||
void timeoutFriendsRecursive(SceNetAdhocctlPeerInfo *& node, int32_t* count);
|
||||
void timeoutFriendsRecursive(SceNetAdhocctlPeerInfo * node, int32_t* count);
|
||||
|
||||
/**
|
||||
* Friend Finder Thread (Receives Peer Information)
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
|
||||
|
||||
#include <string>
|
||||
#include <algorithm>
|
||||
#include <Core/System.h>
|
||||
#include <Core/Host.h>
|
||||
#include <Core/ELF/ParamSFO.h>
|
||||
|
|
Loading…
Add table
Reference in a new issue