[tls] Use const to mark incoming data being processed

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown
2012-03-10 00:25:03 +00:00
parent 1c29b4d979
commit b63bcd73a0
2 changed files with 29 additions and 27 deletions

View File

@@ -23,7 +23,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
*/
struct asn1_cursor {
/** Start of data */
void *data;
const void *data;
/** Length of data */
size_t len;
};