diff options
author | Squibid <me@zacharyscheiman.com> | 2024-12-19 01:25:17 -0600 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2024-12-19 01:25:17 -0600 |
commit | 1a2fcaa6104caf3f9f06d6f4fdf20cc52e739075 (patch) | |
tree | 45e6daae76045ec0f164c11e74ec81223c1d2683 /XD.c | |
parent | b89a69ed5068ce164a31b60a763e5a1547080f38 (diff) | |
download | XD-1a2fcaa6104caf3f9f06d6f4fdf20cc52e739075.tar.gz XD-1a2fcaa6104caf3f9f06d6f4fdf20cc52e739075.tar.bz2 XD-1a2fcaa6104caf3f9f06d6f4fdf20cc52e739075.zip |
fix typo
Diffstat (limited to '')
-rw-r--r-- | XD.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -114,7 +114,7 @@ has_untracked(git_repository *repo) GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX; if (git_status_list_new(&list, repo, &opts) < 0) { - l("Error checking for untacked changes: %s", git_error_last()->message); + l("Error checking for untracked changes: %s", git_error_last()->message); return 0; } |