rename _dealloc to _free

This commit is contained in:
Vinzenz Schroeter 2024-09-07 14:11:15 +02:00
parent f45c8090ec
commit aa359cc807
19 changed files with 389 additions and 410 deletions

View file

@ -13,7 +13,7 @@ int main(void) {
SPPacket *packet = sp_packet_from_command(command);
while (sp_connection_send(connection, sp_packet_clone(packet)));
sp_packet_dealloc(packet);
sp_connection_dealloc(connection);
sp_packet_free(packet);
sp_connection_free(connection);
return 0;
}