fixed a warning

This commit is contained in:
Christian Kroll 2009-08-02 14:45:46 +00:00
parent 952d1398f5
commit 118a026b2b
1 changed files with 1 additions and 1 deletions

View File

@ -295,7 +295,7 @@ blob_t * setupBlob(char * str){
// on non-AVR archs strtok_r fails for some reason if it operates on a
// string which is located on another stack frame, so we need our own copy
memcpy (&blob->scrolltextBuffer, str, SCROLLTEXT_BUFFER_SIZE);
str = &blob->scrolltextBuffer;
str = blob->scrolltextBuffer;
#endif
chop_cnt = 0;
}