xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit 59179115b258997b0207525fbee156353bb3b390

Use LLONG_MAX instead of LONG_LONG_MAX
The later is not standard conforming.

Thanks to NRK.

See
https://github.com/vifm/vifm/commit/64a9de2a0d71d098941a161ef78005cf53872e40#r156315611.
Author: xaizek
Author date (UTC): 2025-05-03 12:17
Committer name: xaizek
Committer date (UTC): 2025-05-03 13:26
Parent(s): 6bbd52bce14ac1b2135f01e2090f07e8c56571d8
Signing key: 99DC5E4DB05F6BE2
Tree: af335e0ed2273393b2d59ea040016dde5047f1b0
File Lines added Lines deleted
THANKS 1 0
src/fops_misc.c 1 1
File THANKS changed (mode: 100644) (index edf285b7f..a741ab9fa)
... ... nandox
231 231 nicodebo nicodebo
232 232 nobodyatandnothing nobodyatandnothing
233 233 Normen Hansen (normen) Normen Hansen (normen)
234 NRK
234 235 obtroston obtroston
235 236 octos octos
236 237 Oleg Gordienko (gordio) Oleg Gordienko (gordio)
File src/fops_misc.c changed (mode: 100644) (index 88723738f..72098469b)
... ... gen_clone_name(const char dir[], const char normal_name[])
935 935 { {
936 936 char *t; char *t;
937 937 long long l; long long l;
938 if((l = strtoll(p + 1, &t, 10)) > 0 && t[1] == '\0' && l != LONG_LONG_MAX)
938 if((l = strtoll(p + 1, &t, 10)) > 0 && t[1] == '\0' && l != LLONG_MAX)
939 939 { {
940 940 len = p - result; len = p - result;
941 941 i = l; i = l;
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master