컴파일러 warning: passing arg 1 of `sprintf' from incompatible pointer type

ch0nn0m의 이미지

파일전송 프로그램 만드는중에...

#include <stdio.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <fcntl.h>
#include <sys/socket.h>
#include <netdb.h>
 
#define PORT 8888
#define BUFSIZE 1024
 
int main(int argc, char **argv)
{
	int serv_sock, clnt_sock,fd,len,str;
	int filesize[128];
	int buf[BUFSIZE];	
	long total;
	struct sockaddr_in server;
	struct sockaddr_in client;
	int client_size;
 
	if(argc !=2 ){
		printf("Usage : %s Filename\n", argv[0]);
		exit(1);
	}
	serv_sock=socket(PF_INET, SOCK_STREAM, 0);
 
	memset(&server, 0, sizeof(server));
	server.sin_family=AF_INET;
	server.sin_addr.s_addr=htonl(INADDR_ANY);
	server.sin_port=htons(PORT);
 
	if(bind(serv_sock,(struct sockaddr*)&server,sizeof(server))==-1)
		printf("bind() error\n");
	if(listen(serv_sock, 5)==-1)
		printf("listen() error\n");
 
	client_size=sizeof(client);
	clnt_sock=accept(serv_sock,(struct sockaddr*)&client,&client_size);
 
	printf("New Client Connected, Client IP : %s \n", inet_ntoa(client.sin_addr));
 
	fd=open(argv[1],O_RDONLY,0);
	total=lseek(fd,0,SEEK_END);
 
	printf("Trans File Size %ld \n",total);
	sprintf(filesize,"%ld",total);
	write(clnt_sock, filesize, 128);
 
	lseek(fd,0,SEEK_SET);
	while((len = read(fd,buf,BUFSIZE)) > 0 ){
		str=send(clnt_sock,buf,BUFSIZE,0);
 
		if(str == BUFSIZE) {
			total-=(long)str;
			if(total <= 0) {
				printf("성공적으로 보내기 완료\n");
				str=0;
				break;
			}
			else {
				printf("성공 적으로 보내서 %ld 가 남았음\n",total);
				continue;
			}
 
		}
		else if(str < BUFSIZE) {
			total-=(long)str;
			if(total <=0)
			{
				printf("성공 완료\n");
				break;
			}
			printf("비 성공적으로 %d 보냇당 그러나 %ld 만큼 남았다\n",len,total);
		}
		else if(str==-1);
		{
			printf("전송 실패\n");
			exit(0);
		}
	}
	close(clnt_sock);
	close(fd);
	return 0;
}

여기선
warning: passing arg 1 of `sprintf' from incompatible pointer type
#include <stdio.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <fcntl.h>
#include <sys/socket.h>
#include <netdb.h>
 
#define PORT 8888
#define BUFSIZE 1024
 
int main(int argc, char **argv)
{
	int sock,fd,str,len;
	int filesize[128];
	int buf[BUFSIZE];	
	long total;
	struct sockaddr_in client;
 
	if(argc !=2 ){
		printf("Usage : %s Filename\n", argv[0]);
		exit(1);
	}
	sock=socket(PF_INET, SOCK_STREAM, 0);
 
	memset(&client, 0, sizeof(client));
	client.sin_family=AF_INET;
	client.sin_addr.s_addr=htonl(INADDR_ANY);
	client.sin_port=htons(PORT);
 
	fd=open(argv[1],O_CREAT|O_TRUNC|O_WRONLY,0);
 
	recv(sock, filesize, 128, 0);
	total = atol(filesize);
	printf("전송받을 크기 %ld\n",total);
 
	while((len = recv(sock,buf,BUFSIZE,0)) > 0) {
		str=write(fd,buf,len);
 
		if(str == BUFSIZE) {
			total-=(long)str;
			if(total <= 0) {
				printf("성공적으로 받기 완료\n");
				str=0;
				break;
			}
			else {
				printf("성공 적으로 받아서 %ld 가 남았음\n",total);
				continue;
			}
 
		}
		else if(str < BUFSIZE) {
			total-=(long)str;
			if(total <=0)
			{
				printf("성공 완료\n");
				break;
			}
			printf("비 성공적으로 %d 받았당 그러나 %ld 만큼 남았다\n",len,total);
		}
		else if(str==-1);
		{
			printf("전송 실패\n");
			exit(0);
		}
	}
	close(sock);
	close(fd);
	return 0;
}

여기선...
warning: passing arg 1 of `atol' from incompatible pointer type

컴파일은 돼는데...결과가 이상하네요...뭐가 잘못된건지..조언좀 부탁드립니다..

grassman의 이미지

sprintf나 atol은 char *을 입력으로 받습니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.