summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/modules.c
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-01-13 18:38:30 +0000
committerThierry Vignaud <tv@mageia.org>2012-01-13 18:38:30 +0000
commitd49eeebb3db74cfb2d68a6989c14f1c9961357b7 (patch)
treee785f2e30401d67ef797f7a4fa6988dedf75f3c1 /mdk-stage1/modules.c
parentc990f18b155433c4069e1210cfb48d1b3c033ffb (diff)
downloaddrakx-d49eeebb3db74cfb2d68a6989c14f1c9961357b7.tar
drakx-d49eeebb3db74cfb2d68a6989c14f1c9961357b7.tar.gz
drakx-d49eeebb3db74cfb2d68a6989c14f1c9961357b7.tar.bz2
drakx-d49eeebb3db74cfb2d68a6989c14f1c9961357b7.tar.xz
drakx-d49eeebb3db74cfb2d68a6989c14f1c9961357b7.zip
(memdup) rename as _memdup() in order to prevent a symbol clash with libkmod
Diffstat (limited to 'mdk-stage1/modules.c')
-rw-r--r--mdk-stage1/modules.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mdk-stage1/modules.c b/mdk-stage1/modules.c
index 9cbb43598..bdbbeff16 100644
--- a/mdk-stage1/modules.c
+++ b/mdk-stage1/modules.c
@@ -181,7 +181,7 @@ static int load_modules_dependencies(void)
}
tmp_deps[i++] = NULL;
- modules_deps[line].deps = memdup(tmp_deps, sizeof(char *) * i);
+ modules_deps[line].deps = _memdup(tmp_deps, sizeof(char *) * i);
line++;
start = end + 1;