From 25de1c6c2a26b9f61c98bd6b007f7c6287232ef8 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 23 Nov 2015 18:46:09 +0100 Subject: [PATCH] We should use the FileID type in the File --- src/storage/file.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/file.rs b/src/storage/file.rs index 65293ea7..f1ceedad 100644 --- a/src/storage/file.rs +++ b/src/storage/file.rs @@ -166,7 +166,7 @@ pub fn match_header_spec<'a>(spec: &'a FileHeaderSpec, data: &'a FileHeaderData) pub struct File { header : FileHeaderData, data : String, - id : String + id : FileID, } impl<'a> File {