Differences From:
File
src/subscript.c
part of check-in
[555911dff5]
- Render the header of every page using subscript. Add a setup page that
for editing that subscript.
by
drh on
2007-11-21 03:01:40.
[view]
To:
File
src/subscript.c
part of check-in
[2a707334c9]
- Fix some compiler warnings. Comment changes on non-functioning code in tkt.c.
by
drh on
2007-11-22 01:53:24.
[view]
@@ -393,9 +393,9 @@
if( makeCopy ){
v.u.str.z = mprintf("%s", zValue);
v.flags |= SBSVAL_DYN;
}else{
- v.u.str.z = zValue;
+ v.u.str.z = (char*)zValue;
}
return sbs_store(&p->symTab, zName, -1, &v);
}