Ensure all parameters have names in header files.
[oweals/tinc.git] / src / device.h
index bf502e018e0adaf7ef3365499d9ebb3171eb3a9f..6bfc44de1b1c7406e688643a8c7521efe546773f 100644 (file)
@@ -31,8 +31,8 @@ extern char *iface;
 typedef struct devops_t {
        bool (*setup)(void);
        void (*close)(void);
-       bool (*read)(struct vpn_packet_t *);
-       bool (*write)(struct vpn_packet_t *);
+       bool (*read)(struct vpn_packet_t *packet);
+       bool (*write)(struct vpn_packet_t *packet);
        void (*dump_stats)(void);
 } devops_t;