diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-06-15 10:37:10 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-06-15 10:37:10 -0700 |
commit | 89e10c2e8a7d9592a400824f9667b2487014f633 (patch) | |
tree | 2dd87978683aa44d0d4633444805e2b3984ed13e /core/parseconfig.inc | |
parent | 958ddda00522f768bf9adc86c0d5b446e0a672cf (diff) | |
download | syslinux-89e10c2e8a7d9592a400824f9667b2487014f633.tar.gz |
Mechanically rename the writestr functions
Mechanically rename the writestr functions:
writestr -> writestr_early
cwritestr -> writestr
... to reflect which function is more appropriate to call in normal
circumstances.
Diffstat (limited to 'core/parseconfig.inc')
-rw-r--r-- | core/parseconfig.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/parseconfig.inc b/core/parseconfig.inc index 2ef9c3a2..dfd380f7 100644 --- a/core/parseconfig.inc +++ b/core/parseconfig.inc @@ -328,7 +328,7 @@ pc_label: call commit_vk ; Commit any current vkernel ; "say" command ; pc_say: call pc_getline ; "say" command - call writestr + call writestr_early jmp crlf ; tailcall ; @@ -410,7 +410,7 @@ commit_vk: ret .overflow: mov si,vk_overflow_msg - call writestr + call writestr_early ret section .data |