diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-04-29 01:11:13 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-04-29 01:11:13 -0400 |
commit | f57de6e0144fcd19fa711ef28f4ca0b5239a5223 (patch) | |
tree | 0c323a47fdf0075171f5c434176789ccb73c6373 /lib/shlib.c | |
parent | a9e240f27c3073cd38bbe00d07161ad53ae7ae45 (diff) | |
download | spmc-f57de6e0144fcd19fa711ef28f4ca0b5239a5223.tar.gz |
Fix typo
Diffstat (limited to 'lib/shlib.c')
-rw-r--r-- | lib/shlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/shlib.c b/lib/shlib.c index f0c1d71..091d22e 100644 --- a/lib/shlib.c +++ b/lib/shlib.c @@ -75,7 +75,7 @@ char *shlib_rpath(const char *filename) { } // record library path - result = strdup(field[1])); + result = strdup(field[1]); split_free(field); break; } |