summaryrefslogtreecommitdiff
path: root/apps/plugins/shortcuts
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/shortcuts')
-rw-r--r--apps/plugins/shortcuts/shortcuts.h2
-rw-r--r--apps/plugins/shortcuts/shortcuts_common.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/shortcuts/shortcuts.h b/apps/plugins/shortcuts/shortcuts.h
index bfe3540c4d..3d6c421c5a 100644
--- a/apps/plugins/shortcuts/shortcuts.h
+++ b/apps/plugins/shortcuts/shortcuts.h
@@ -51,7 +51,7 @@ typedef struct sc_file_s
51 51
52 52
53extern void *memory_buf; 53extern void *memory_buf;
54extern long memory_bufsize; 54extern size_t memory_bufsize;
55 55
56 56
57extern sc_file_t sc_file; 57extern sc_file_t sc_file;
diff --git a/apps/plugins/shortcuts/shortcuts_common.c b/apps/plugins/shortcuts/shortcuts_common.c
index dee1657afc..da212a55a3 100644
--- a/apps/plugins/shortcuts/shortcuts_common.c
+++ b/apps/plugins/shortcuts/shortcuts_common.c
@@ -35,7 +35,7 @@
35 35
36/* Memory (will be used for entries) */ 36/* Memory (will be used for entries) */
37void *memory_buf; 37void *memory_buf;
38long memory_bufsize; /* Size of memory_buf in bytes */ 38size_t memory_bufsize; /* Size of memory_buf in bytes */
39 39
40 40
41/* The file we're processing */ 41/* The file we're processing */