|
Harald Hoyer |
b3dfe7 |
From 2c9bcac1136c6a18aedcdcdac5789ccf5cd18492 Mon Sep 17 00:00:00 2001
|
|
Harald Hoyer |
b3dfe7 |
From: Harald Hoyer <harald@redhat.com>
|
|
Harald Hoyer |
b3dfe7 |
Date: Tue, 10 Oct 2017 13:39:17 +0200
|
|
Harald Hoyer |
b3dfe7 |
Subject: [PATCH] dracut-install: char* -> const char*
|
|
Harald Hoyer |
b3dfe7 |
|
|
Harald Hoyer |
b3dfe7 |
---
|
|
Harald Hoyer |
b3dfe7 |
install/dracut-install.c | 2 +-
|
|
Harald Hoyer |
b3dfe7 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
Harald Hoyer |
b3dfe7 |
|
|
Harald Hoyer |
b3dfe7 |
diff --git a/install/dracut-install.c b/install/dracut-install.c
|
|
Harald Hoyer |
b3dfe7 |
index 95425e8d..82e882cc 100644
|
|
Harald Hoyer |
b3dfe7 |
--- a/install/dracut-install.c
|
|
Harald Hoyer |
b3dfe7 |
+++ b/install/dracut-install.c
|
|
Harald Hoyer |
b3dfe7 |
@@ -1392,7 +1392,7 @@ static int install_modules(int argc, char **argv)
|
|
Harald Hoyer |
b3dfe7 |
struct kmod_module *mod = NULL, *mod_o = NULL;
|
|
Harald Hoyer |
b3dfe7 |
|
|
Harald Hoyer |
b3dfe7 |
const char *modname = NULL;
|
|
Harald Hoyer |
b3dfe7 |
- char *abskpath = NULL;
|
|
Harald Hoyer |
b3dfe7 |
+ const char *abskpath = NULL;
|
|
Harald Hoyer |
b3dfe7 |
char *p;
|
|
Harald Hoyer |
b3dfe7 |
int i;
|
|
Harald Hoyer |
b3dfe7 |
|
|
Harald Hoyer |
b3dfe7 |
|