We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f90323c + 2161959 commit 65524e5Copy full SHA for 65524e5
sapi/fpm/fpm/fpm_status.c
@@ -608,7 +608,7 @@ int fpm_status_handle_request(void) /* {{{ */
608
time_buffer,
609
(unsigned long) (now_epoch - proc->start_epoch),
610
proc->requests,
611
- duration.tv_sec * 1000000UL + duration.tv_usec,
+ (unsigned long) (duration.tv_sec * 1000000UL + duration.tv_usec),
612
proc->request_method[0] != '\0' ? proc->request_method : "-",
613
proc->request_uri[0] != '\0' ? proc->request_uri : "-",
614
query_string ? "?" : "",
0 commit comments