Skip to content

Commit

Permalink
apply patch from pr TelegramMessenger#486
Browse files Browse the repository at this point in the history
  • Loading branch information
resure committed Oct 30, 2023
1 parent f8312eb commit a408df7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion common/pid.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ npid_t PID;
void init_common_PID (void) {
if (!PID.pid) {
int p = getpid ();
assert (!(p & 0xffff0000));
assert (!(p & 0x80000000));
PID.pid = p;
}
if (!PID.utime) {
Expand Down
4 changes: 2 additions & 2 deletions common/pid.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@
struct process_id {
unsigned ip;
short port;
unsigned short pid;
unsigned int pid;
int utime;
};

struct process_id_ext {
unsigned ip;
short port;
unsigned short pid;
unsigned int pid;
int utime;
int actor_id;
};
Expand Down

0 comments on commit a408df7

Please sign in to comment.