aboutsummaryrefslogtreecommitdiffstats
path: root/ncpd/packet.h
diff options
context:
space:
mode:
Diffstat (limited to 'ncpd/packet.h')
-rw-r--r--ncpd/packet.h2
1 files changed, 1 insertions, 1 deletions
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];