diff options
| author | Zuhaitz <zuhaitz.zechhub@gmail.com> | 2026-01-13 14:46:19 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-13 14:46:19 +0000 |
| commit | 856267f36e60211ba537d63a80c5d36aa4436a4f (patch) | |
| tree | 2acc5ee919223bc57fc4c918696144d00cbd2bda /src/main.c | |
| parent | 058afa8c4a7cddad5d57536834356d5f72d57664 (diff) | |
| parent | edb3d8013e62dbdc1f093a8781f1833e11dfbdda (diff) | |
Merge pull request #34 from anas-contribs/fix/path-printing
fix(main.c): update the search paths printing function to reflect the actual values
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -17,7 +17,8 @@ void print_search_paths() printf("Search paths:\n"); printf(" ./\n"); printf(" ./std/\n"); - printf(" /usr/local/lib/zen/\n"); + printf(" /usr/local/share/zenc\n"); + printf(" /usr/share/zenc\n"); } void print_usage() |
