Putting Adj LSA to Repo
diff --git a/nlsr-sync-0.0/nlsrc.c b/nlsr-sync-0.0/nlsrc.c
index e85cf00..91a1523 100755
--- a/nlsr-sync-0.0/nlsrc.c
+++ b/nlsr-sync-0.0/nlsrc.c
@@ -100,7 +100,7 @@
}
printf("Command to send: %s \n",command);
bytesSent=send(sockfd, command, strlen(command),0);
- printf("Command len: %d, Bytes sent: %d \n",strlen(command), bytesSent);
+ printf("Command len: %d, Bytes sent: %d \n",(int)strlen(command), bytesSent);
recv(sockfd, recv_buffer, 1024, 0);
printf("%s\n",recv_buffer);
free(command);