* Scratch buffer is used as a string more often than not, change to
char * rather than unsigned char *.
This commit is contained in:
parent
71573a4968
commit
02c2d3c9c0
|
@ -26,7 +26,7 @@
|
||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* @(#)$Id: cle.h,v 1.5 2007/04/26 13:37:41 bg- Exp $
|
* @(#)$Id: cle.h,v 1.6 2007/05/15 10:28:03 bg- Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef CLE_H
|
#ifndef CLE_H
|
||||||
|
@ -48,7 +48,7 @@ typedef uint32_t cle_addr;
|
||||||
typedef uintptr_t cle_addr;
|
typedef uintptr_t cle_addr;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef unsigned char cle_scratch[32];
|
typedef char cle_scratch[32];
|
||||||
|
|
||||||
struct cle_info {
|
struct cle_info {
|
||||||
cle_addr text;
|
cle_addr text;
|
||||||
|
|
Loading…
Reference in a new issue