gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 46/254: examples: fixed too long line and too long


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 46/254: examples: fixed too long line and too long string warnings
Date: Sat, 17 Jun 2017 16:51:18 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to annotated tag gnurl-7.54.1
in repository gnurl.

commit 6cba8dacea773ab37ae457e2a2d24d2ead9f68a4
Author: Dan Fandrich <address@hidden>
AuthorDate: Mon May 1 09:16:12 2017 +0200

    examples: fixed too long line and too long string warnings
---
 docs/examples/ftpuploadfrommem.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/examples/ftpuploadfrommem.c b/docs/examples/ftpuploadfrommem.c
index dec7bbbbe..134cda364 100644
--- a/docs/examples/ftpuploadfrommem.c
+++ b/docs/examples/ftpuploadfrommem.c
@@ -36,8 +36,7 @@ static const char data[]=
   "Vivamus nec neque ac elit blandit pretium vitae maximus ipsum. "
   "Quisque sodales magna vel erat auctor, sed pellentesque nisi "
   "rhoncus. Donec vehicula maximus pretium. Aliquam eu tincidunt "
-  "lorem. Ut placerat, sem eu pharetra mattis, ante lacus fringilla "
-  "diam, a consequat quam eros eget erat.";
+  "lorem.";
 
 struct WriteThis {
   const char *readptr;
@@ -88,7 +87,8 @@ int main(void)
   curl = curl_easy_init();
   if(curl) {
     /* First set the URL, the target file */
-    curl_easy_setopt(curl, CURLOPT_URL, 
"ftp://example.com/path/to/upload/file";);
+    curl_easy_setopt(curl, CURLOPT_URL,
+                     "ftp://example.com/path/to/upload/file";);
 
     /* User and password for the FTP login */
     curl_easy_setopt(curl, CURLOPT_USERPWD, "login:secret");

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]