aboutsummaryrefslogtreecommitdiffstats
path: root/editline
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-19 01:20:23 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-19 01:20:23 +0000
commitf2ce8f47db1545ec52e1228b02f6e9240208ebe4 (patch)
treeec1706266dc862ec5bdb5f6a2012de235c1b0644 /editline
parent65b7674a758892ccef2aadb1af838f58e520d124 (diff)
Code cleanups (bug #66)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1531 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'editline')
-rwxr-xr-xeditline/histedit.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/editline/histedit.h b/editline/histedit.h
index 28b01944b..e387e3b81 100755
--- a/editline/histedit.h
+++ b/editline/histedit.h
@@ -59,9 +59,9 @@ typedef struct editline EditLine;
* For user-defined function interface
*/
typedef struct lineinfo {
- const char *buffer;
- const char *cursor;
- const char *lastchar;
+ char *buffer;
+ char *cursor;
+ char *lastchar;
} LineInfo;