projects
/
platform
/
upstream
/
kmod.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3db5bf9
)
Add missing static const
author
Lucas De Marchi
<lucas.demarchi@profusion.mobi>
Wed, 4 Jan 2012 10:00:45 +0000
(08:00 -0200)
committer
Lucas De Marchi
<lucas.demarchi@profusion.mobi>
Wed, 4 Jan 2012 10:00:45 +0000
(08:00 -0200)
libkmod/libkmod-file.c
patch
|
blob
|
history
diff --git
a/libkmod/libkmod-file.c
b/libkmod/libkmod-file.c
index
12b8e2b
..
809c7cd
100644
(file)
--- a/
libkmod/libkmod-file.c
+++ b/
libkmod/libkmod-file.c
@@
-257,7
+257,7
@@
static void unload_reg(struct kmod_file *file)
munmap(file->memory, file->size);
}
-struct file_ops reg_ops = {
+st
atic const st
ruct file_ops reg_ops = {
load_reg, unload_reg
};