Skip to content

Fix README and segmentation fault for FreeBSD, addressing #163 #164

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ curl -L https://gitee.com/RubyMetric/chsrc/releases/download/pre/chsrc-x64-macos

```bash
$ git clone https://gitee.com/RubyMetric/chsrc.git; cd chsrc
$ clang -Iinclude src/chsrc-main.c -o chsrc
$ clang -Iinclude -Ilib src/chsrc-main.c -o chsrc
```
</details>

Expand Down
4 changes: 2 additions & 2 deletions lib/xy.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Lib Name : xy.h
* Lib Authors : Aoran Zeng <[email protected]>
* | Heng Guo <[email protected]>
* Contributors : Nil Null <[email protected]>
* Contributors : juzeon <[email protected]>
* |
* Created On : <2023-08-28>
* Last Modified : <2024-12-14>
Expand Down Expand Up @@ -642,7 +642,7 @@ xy_run_iter (const char *cmd, unsigned long n, void (*iter_func) (const char *
static char *
xy_run (const char *cmd, unsigned long n)
{
xy_run_iter (cmd, n, NULL);
return xy_run_iter (cmd, n, NULL);
}


Expand Down
1 change: 1 addition & 0 deletions src/chsrc-main.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
* | zouri <[email protected]>
* | yongxiang <[email protected]>
* | YU-7 <[email protected]>
* | juzeon <[email protected]>
* |
* Created On : <2023-08-28>
* Last Modified : <2024-12-25>
Expand Down