Remove const from dtc_file::dir.

Signed-off-by: Scott Wood <scottwood@freescale.com>
This commit is contained in:
Scott Wood 2008-01-11 13:14:57 -06:00 committed by Jon Loeliger
parent 82b327d380
commit 0f635df874
2 changed files with 3 additions and 3 deletions

View file

@ -25,7 +25,7 @@
#include <stdio.h>
struct dtc_file {
const char *dir;
char *dir;
const char *name;
FILE *file;
};