Skip to content

Commit 6abe815

Browse files
committed
fix error in handling signals capturing in main-emos.c
1 parent f2923ea commit 6abe815

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

radius_clustering/utils/main-emos.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1622,7 +1622,7 @@ void handler(int sig) {
16221622
struct Result* emos_main(int* edges, int n, int nb_edge) {
16231623

16241624
// Set the signal handler
1625-
setup_signal_handler(SIGINT, handler);
1625+
setup_signal_handler(handler);
16261626

16271627
_read_graph_from_edge_list(edges, n, nb_edge);
16281628
NB_NODE_O = NB_NODE;

0 commit comments

Comments
 (0)