Skip to content

Commit

Permalink
Fixed missprint
Browse files Browse the repository at this point in the history
  • Loading branch information
lunixoid committed Oct 30, 2017
1 parent cbecc77 commit f1b1eff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ya_exec.c
Original file line number Diff line number Diff line change
Expand Up @@ -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==' ')
Expand Down

0 comments on commit f1b1eff

Please sign in to comment.