Merge pull request #171 from lunixoid/master

Fixed missprint
This commit is contained in:
NBonaparte 2017-10-30 20:42:25 -07:00 committed by GitHub
commit 813b87ba5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,7 @@ static const char * const yashell = "/bin/sh";
inline static void ya_copy_buf_from_index(ya_block_t *blk, uint32_t cur_desktop) {
char *cur = blk->internal->option[0];
uint32_t index =0;
for(;*cur!= '\0' && *cur == ' ';cur++);
for(;*cur == ' ';cur++);
for(;*cur != '\0'; cur++) {
int offset = 0;
if(*cur==' ')