diff options
| -rw-r--r-- | examples/example1.c | 4 | ||||
| -rw-r--r-- | examples/example2.c | 2 | ||||
| -rwxr-xr-x | release | 1 | 
3 files changed, 4 insertions, 3 deletions
| diff --git a/examples/example1.c b/examples/example1.c index ffbc3e0..90d0072 100644 --- a/examples/example1.c +++ b/examples/example1.c @@ -49,9 +49,9 @@ int main() {  	if (strlen(buf)<2) break;  	recoded = rccRecode(NULL, 0, 1, buf);  	if (recoded) { -	    printf(recoded); +	    printf("%s", recoded);  	    free(recoded); -	} else printf(buf); +	} else printf("%s", buf);      }      rccFree(); diff --git a/examples/example2.c b/examples/example2.c index c10a3d5..ed36aa2 100644 --- a/examples/example2.c +++ b/examples/example2.c @@ -68,7 +68,7 @@ int main(int argc, char *argv[]) {  	if (rccstring) {  	    recoded = rccTo(NULL, 1, rccstring);  	    if (recoded) { -		printf(recoded); +		printf("%s", recoded);  		free(recoded);  	    } else printf("Recoding from UTF-8 is failed\n");  	    free(rccstring); @@ -52,4 +52,5 @@ cp -a * $RDIR/$rname      rm -rf $rname      scp $rname.tar.bz2 csa@dside.dyndns.org:/home/csa/public_html/files/rusxmms/ +    ssh csa@dside.dyndns.org ln -sf $rname.tar.bz2 /home/csa/public_html/files/rusxmms/$NAME-latest.tar.bz2  ) | 
