summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xamiga/arexx.c4
-rw-r--r--riscos/buffer.c2
-rw-r--r--riscos/configure/con_theme.c7
-rw-r--r--riscos/gui/progress_bar.c2
-rw-r--r--riscos/gui/status_bar.c4
-rw-r--r--riscos/plugin.c2
-rw-r--r--riscos/theme.c6
-rw-r--r--riscos/treeview.c2
-rw-r--r--riscos/url_complete.c2
-rw-r--r--utils/container.c4
10 files changed, 17 insertions, 18 deletions
diff --git a/amiga/arexx.c b/amiga/arexx.c
index bef46cdf3..5d6a60938 100755
--- a/amiga/arexx.c
+++ b/amiga/arexx.c
@@ -156,7 +156,7 @@ STATIC VOID rx_geturl(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((u
}
else
{
- strcpy(result,"\0");
+ strcpy(result,"");
}
cmd->ac_Result = result;
@@ -170,7 +170,7 @@ STATIC VOID rx_gettitle(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__(
}
else
{
- strcpy(result,"\0");
+ strcpy(result,"");
}
cmd->ac_Result = result;
diff --git a/riscos/buffer.c b/riscos/buffer.c
index ebd099a5e..61ce68c89 100644
--- a/riscos/buffer.c
+++ b/riscos/buffer.c
@@ -41,7 +41,7 @@ static void ro_gui_buffer_free(void);
/** The buffer characteristics
*/
static osspriteop_area *buffer = NULL;
-static char buffer_name[] = "scr_buffer\0\0";
+static char buffer_name[12] = "scr_buffer";
/** The current clip area
*/
diff --git a/riscos/configure/con_theme.c b/riscos/configure/con_theme.c
index 003d67616..0aebd86c0 100644
--- a/riscos/configure/con_theme.c
+++ b/riscos/configure/con_theme.c
@@ -78,9 +78,9 @@ static wimp_window theme_pane_definition = {
static wimp_w theme_pane;
static struct theme_descriptor *theme_list = NULL;
static struct toolbar_display *toolbars = NULL;
-static char theme_radio_validation[] = "Sradiooff,radioon\0";
-static char theme_null_validation[] = "\0";
-static char theme_line_validation[] = "R2\0";
+static char theme_radio_validation[] = "Sradiooff,radioon";
+static char theme_null_validation[] = "";
+static char theme_line_validation[] = "R2";
static bool ro_gui_options_theme_ok(wimp_w w);
static bool ro_gui_options_theme_click(wimp_pointer *pointer);
@@ -358,7 +358,6 @@ void ro_gui_options_theme_load(void)
new_icon.icon.data.indirected_text.validation =
theme_line_validation;
new_icon.icon.data.indirected_text.size = 1;
- strlen(link->descriptor->filename) + 1;
xwimp_create_icon(&new_icon, 0);
}
diff --git a/riscos/gui/progress_bar.c b/riscos/gui/progress_bar.c
index 1195d57bb..bcfb99e96 100644
--- a/riscos/gui/progress_bar.c
+++ b/riscos/gui/progress_bar.c
@@ -56,7 +56,7 @@ struct progress_bar {
bool icon_obscured; /**< icon is partially obscured */
};
-static char progress_animation_sprite[] = "progress\0";
+static char progress_animation_sprite[] = "progress";
static osspriteop_header *progress_icon;
static unsigned int progress_width;
static unsigned int progress_height;
diff --git a/riscos/gui/status_bar.c b/riscos/gui/status_bar.c
index 1ab458c1f..73d3cd327 100644
--- a/riscos/gui/status_bar.c
+++ b/riscos/gui/status_bar.c
@@ -51,8 +51,8 @@ struct status_bar {
bool visible; /**< status bar is visible? */
};
-static char status_widget_text[] = "\0";
-static char status_widget_validation[] = "R5;Pptr_lr,8,6\0";
+static char status_widget_text[] = "";
+static char status_widget_validation[] = "R5;Pptr_lr,8,6";
wimp_WINDOW(1) status_bar_definition = {
{0, 0, 1, 1},
diff --git a/riscos/plugin.c b/riscos/plugin.c
index d973e7472..6a9cea38e 100644
--- a/riscos/plugin.c
+++ b/riscos/plugin.c
@@ -1447,7 +1447,7 @@ bool plugin_write_parameters_file(struct content *c,
ppi = 0;
}
- fwrite("\0", sizeof(char), 4, fp);
+ fwrite("", sizeof(char), 4, fp);
fclose(fp);
diff --git a/riscos/theme.c b/riscos/theme.c
index a540f3b43..a5c1875cb 100644
--- a/riscos/theme.c
+++ b/riscos/theme.c
@@ -120,9 +120,9 @@ static wimp_window theme_toolbar_window = {
/* Shared icon validation
*/
-static char theme_url_validation[] = "Pptr_write;KN\0";
-static char theme_null_text_string[] = "\0";
-static char theme_separator_name[] = "separator\0";
+static char theme_url_validation[] = "Pptr_write;KN";
+static char theme_null_text_string[] = "";
+static char theme_separator_name[] = "separator";
static char theme_favicon_sprite[12];
diff --git a/riscos/treeview.c b/riscos/treeview.c
index 3989d0887..4a4ad36cf 100644
--- a/riscos/treeview.c
+++ b/riscos/treeview.c
@@ -75,7 +75,7 @@ static int ro_gui_tree_origin_y;
/* element drawing */
static wimp_icon ro_gui_tree_icon;
static char ro_gui_tree_icon_validation[24];
-static char ro_gui_tree_icon_null[] = "\0";
+static char ro_gui_tree_icon_null[] = "";
/* dragging information */
static struct tree *ro_gui_tree_current_drag_tree;
diff --git a/riscos/url_complete.c b/riscos/url_complete.c
index 231a34929..d810f8844 100644
--- a/riscos/url_complete.c
+++ b/riscos/url_complete.c
@@ -51,7 +51,7 @@ static char *url_complete_original_url = NULL;
static bool url_complete_memory_exhausted = false;
static const char *url_complete_redraw[MAXIMUM_VISIBLE_LINES];
-static char url_complete_icon_null[] = "\0";
+static char url_complete_icon_null[] = "";
static char url_complete_icon_sprite[12];
static wimp_icon url_complete_icon;
static wimp_icon url_complete_sprite;
diff --git a/utils/container.c b/utils/container.c
index cc6db75b7..900eac6c3 100644
--- a/utils/container.c
+++ b/utils/container.c
@@ -327,8 +327,8 @@ int main(int argc, char *argv[])
int state = 0;
char *n;
- container_add(ctx, "CHEESE", "This is a test of some cheese.\0", 31);
- container_add(ctx, "FOO", "This is a test of some cheese.\0", 31);
+ container_add(ctx, "CHEESE", "This is a test of some cheese.", sizeof("This is a test of some cheese."));
+ container_add(ctx, "FOO", "This is a test of some cheese.", sizeof("This is a test of some cheese."));
container_close(ctx);