summaryrefslogtreecommitdiff
path: root/firmware/target/hosted/sonynwz/system-nwz.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/hosted/sonynwz/system-nwz.c')
-rw-r--r--firmware/target/hosted/sonynwz/system-nwz.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/hosted/sonynwz/system-nwz.c b/firmware/target/hosted/sonynwz/system-nwz.c
index b20ee71774..c10c26250b 100644
--- a/firmware/target/hosted/sonynwz/system-nwz.c
+++ b/firmware/target/hosted/sonynwz/system-nwz.c
@@ -49,7 +49,7 @@ static void compute_kern_mod_list(void)
49 kern_mod_list = malloc(sizeof(const char **)); 49 kern_mod_list = malloc(sizeof(const char **));
50 kern_mod_list[0] = NULL; 50 kern_mod_list[0] = NULL;
51 /* read from proc file system */ 51 /* read from proc file system */
52 FILE *f = fopen("/proc/modules", "r"); 52 FILE *f = fopen("/proc/modules", "re");
53 if(f == NULL) 53 if(f == NULL)
54 { 54 {
55 printf("Cannot open /proc/modules"); 55 printf("Cannot open /proc/modules");
@@ -94,7 +94,7 @@ static void dump_proc_map(void)
94{ 94{
95 const char *file = "/proc/self/maps"; 95 const char *file = "/proc/self/maps";
96 printf("Dumping %s...\n", file); 96 printf("Dumping %s...\n", file);
97 FILE *f = fopen(file, "r"); 97 FILE *f = fopen(file, "re");
98 if(f == NULL) 98 if(f == NULL)
99 { 99 {
100 perror("Cannot open file"); 100 perror("Cannot open file");