From 6b4c8428278b9007169b859cf9ebb449181bd9c7 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Mon, 13 Jun 2005 09:17:31 +0000 Subject: [PATCH] shuffle structure elements to cope with atr[0] git-svn-id: https://svn.gnumonks.org/trunk/librfid@1208 e0336214-984f-0b4b-a45f-81c69e1f0ede --- include/rfid/rfid_protocol.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/include/rfid/rfid_protocol.h b/include/rfid/rfid_protocol.h index 93b89c3..f9db318 100644 --- a/include/rfid/rfid_protocol.h +++ b/include/rfid/rfid_protocol.h @@ -28,10 +28,13 @@ struct rfid_protocol { struct rfid_protocol_handle { struct rfid_layer2_handle *l2h; + struct rfid_protocol *proto; union { struct tcl_handle tcl; - } priv; - struct rfid_protocol *proto; + } priv; /* priv has to be last, since + * it could contain additional + * private data over the end of + * sizeof(priv). */ }; struct rfid_protocol_handle * -- 2.20.1