Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/linux-sunxi/sunxi-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Mery <amery@geeks.cl>2012-05-06 18:04:03 +0400
committerAlejandro Mery <amery@geeks.cl>2012-05-06 18:04:03 +0400
commitbdd5abdbe1a4d91cde236d7e40a25a7c0ed3fb2b (patch)
tree8915f145d09ce834890d1cbe0f5c4450c996af77 /script.h
parent1d0c2f15f06e9238be9171a971a19b9ce8ba2022 (diff)
script: rename script_section_append() to script_section_new()
Diffstat (limited to 'script.h')
-rw-r--r--script.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/script.h b/script.h
index 6e59211..fe2950c 100644
--- a/script.h
+++ b/script.h
@@ -81,8 +81,8 @@ struct script *script_new(void);
void script_delete(struct script *);
/** create a new section appended to a given tree */
-struct script_section *script_section_append(struct script *script,
- const char *name);
+struct script_section *script_section_new(struct script *script,
+ const char *name);
/** deletes a section recursvely and removes it from the script */
void script_section_delete(struct script_section *section);