aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ncpd/link.h2
-rw-r--r--ncpd/packet.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/ncpd/link.h b/ncpd/link.h
index 0830bbc..cf265c0 100644
--- a/ncpd/link.h
+++ b/ncpd/link.h
@@ -142,7 +142,7 @@ public:
private:
friend class packet;
- friend void * ::expire_check(void *);
+ friend void * expire_check(void *);
void receive(bufferStore buf);
void transmit(bufferStore buf);
diff --git a/ncpd/packet.h b/ncpd/packet.h
index e4d7381..aa0b90c 100644
--- a/ncpd/packet.h
+++ b/ncpd/packet.h
@@ -61,7 +61,7 @@ public:
void reset();
private:
- friend void * ::pump_run(void *);
+ friend void * pump_run(void *);
inline void addToCrc(unsigned char a, unsigned short *crc) {
*crc = (*crc << 8) ^ crc_table[((*crc >> 8) ^ a) & 0xff];