summaryrefslogtreecommitdiffstats
path: root/meta/packages/opkg/opkg/fix_prototype.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/packages/opkg/opkg/fix_prototype.patch')
-rw-r--r--meta/packages/opkg/opkg/fix_prototype.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/meta/packages/opkg/opkg/fix_prototype.patch b/meta/packages/opkg/opkg/fix_prototype.patch
deleted file mode 100644
index 4be881aa7e..0000000000
--- a/meta/packages/opkg/opkg/fix_prototype.patch
+++ /dev/null
@@ -1,39 +0,0 @@
1Index: opkg/libopkg/opkg_utils.c
2===================================================================
3--- opkg.orig/libopkg/opkg_utils.c 2008-10-23 09:36:52.000000000 +0100
4+++ opkg/libopkg/opkg_utils.c 2008-10-23 09:37:05.000000000 +0100
5@@ -165,7 +165,7 @@
6 }
7
8
9-void free_error_list(){
10+void free_error_list(void){
11 struct errlist *err_tmp_lst;
12
13 err_tmp_lst = error_list;
14Index: opkg/libopkg/opkg_utils.h
15===================================================================
16--- opkg.orig/libopkg/opkg_utils.h 2008-10-23 09:36:50.000000000 +0100
17+++ opkg/libopkg/opkg_utils.h 2008-10-23 09:37:13.000000000 +0100
18@@ -23,7 +23,7 @@
19
20 void push_error_list(struct errlist **errors,char * msg);
21 void reverse_error_list(struct errlist **errors);
22-void free_error_list();
23+void free_error_list(void);
24
25 int get_available_blocks(char * filesystem);
26 char **read_raw_pkgs_from_file(const char *file_name);
27Index: opkg/libopkg/opkg_cmd.c
28===================================================================
29--- opkg.orig/libopkg/opkg_cmd.c 2008-10-23 12:02:29.000000000 +0100
30+++ opkg/libopkg/opkg_cmd.c 2008-10-23 12:02:53.000000000 +0100
31@@ -151,7 +151,7 @@
32 error_list = error_list->next;
33
34 }
35- free_error_list(&error_list);
36+ free_error_list();
37 }
38
39 }