From f4e40494c07067838dd67f0614dc75fdb6291c41 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 3 Sep 2013 11:51:48 +0000 Subject: lib: Apply some const to pull_file_id_24 Signed-off-by: Volker Lendecke Reviewed-by: Michael Adam --- source3/lib/file_id.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib/file_id.h') diff --git a/source3/lib/file_id.h b/source3/lib/file_id.h index 2ca839077f..6fa98400b8 100644 --- a/source3/lib/file_id.h +++ b/source3/lib/file_id.h @@ -34,4 +34,4 @@ const char *file_id_string_tos(const struct file_id *id); const char *file_id_string(TALLOC_CTX *mem_ctx, const struct file_id *id); void push_file_id_16(char *buf, const struct file_id *id); void push_file_id_24(char *buf, const struct file_id *id); -void pull_file_id_24(char *buf, struct file_id *id); +void pull_file_id_24(const char *buf, struct file_id *id); -- cgit