Fixed missprint

This commit is contained in:
Roman Kalashnikov 2017-10-30 19:25:43 +03:00 committed by GitHub
parent cbecc7766e
commit f1b1eff481
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==' ')