Fix makefile and change some stuff in client

This commit is contained in:
Afonso Franco 2024-05-12 18:09:23 +01:00
parent 4650fbc7c7
commit 35cde3e290
Signed by: afonso
SSH key fingerprint: SHA256:PQTRDHPH3yALEGtHXnXBp3Orfcn21pK20t0tS1kHg54
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
# Compiler # Compiler
CC := gcc CC := gcc
# Compiler flags # Compiler flags
CFLAGS := -Wall -Wextra -Werror -Ilibs -fsanitize=address CFLAGS := -Wall -Wextra -Ilibs
# Directories # Directories
SRCDIR := src SRCDIR := src

View file

@ -106,7 +106,7 @@ int main(int argc, char *argv[]) {
} }
} }
int receiverUidInt = atoi(receiverUid); int receiverUidInt = atoi("1003");
send_message(receiverUidInt,groupFlag); send_message(receiverUidInt,groupFlag);