Re: [PATCH v4 4/9] Specify explicitly where we parse timestamps

2017-04-23 Thread Junio C Hamano
Johannes Schindelin writes: > Currently, Git's source code represents all timestamps as `unsigned > long`. In preparation for using a more appropriate data type, let's > introduce a symbol `parse_timestamp` (currently being defined to > `strtoul`) where appropriate,

[PATCH v4 4/9] Specify explicitly where we parse timestamps

2017-04-21 Thread Johannes Schindelin
Currently, Git's source code represents all timestamps as `unsigned long`. In preparation for using a more appropriate data type, let's introduce a symbol `parse_timestamp` (currently being defined to `strtoul`) where appropriate, so that we can later easily switch to, say, use `strtoull()`