Skip to content

Commit

Permalink
🐛(kangjianwei#26)修复SqQueue的DestroyQueue返回
Browse files Browse the repository at this point in the history
  • Loading branch information
techoc committed Jul 19, 2022
1 parent fbf7c3c commit b265129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CLion/CourseBook/0308_SqQueue/SqQueue.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Status DestroyQueue(SqQueue* Q) {
(*Q).base = NULL;
(*Q).front = (*Q).rear = 0;

return ERROR;
return OK;
}

/*
Expand Down

0 comments on commit b265129

Please sign in to comment.