[Pdbg] [PATCH v5 06/19] libpdbg: Use const char * for filenames
Amitay Isaacs
amitay at ozlabs.org
Thu Apr 30 12:34:27 AEST 2020
Signed-off-by: Amitay Isaacs <amitay at ozlabs.org>
Reviewed-by: Alistair Popple <alistair at popple.id.au>
---
libpdbg/dtb.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libpdbg/dtb.c b/libpdbg/dtb.c
index 3b7a597..6a75de4 100644
--- a/libpdbg/dtb.c
+++ b/libpdbg/dtb.c
@@ -251,7 +251,7 @@ static void bmc_target(struct pdbg_dtb *dtb)
}
/* Opens a dtb at the given path */
-static void mmap_dtb(char *file, bool readonly, struct pdbg_mfile *mfile)
+static void mmap_dtb(const char *file, bool readonly, struct pdbg_mfile *mfile)
{
int fd;
void *dtb;
@@ -325,7 +325,7 @@ const char *pdbg_get_backend_option(void)
struct pdbg_dtb *pdbg_default_dtb(void *system_fdt)
{
struct pdbg_dtb *dtb = &pdbg_dtb;
- char *fdt;
+ const char *fdt;
dtb->backend.fdt = NULL;
dtb->system.fdt = system_fdt;
--
2.25.4
More information about the Pdbg
mailing list