Index: uspace/lib/posix/src/stdio/scanf.c
===================================================================
--- uspace/lib/posix/src/stdio/scanf.c	(revision 3fafe5e03bb501f8627b315f8e97330dd3996f86)
+++ uspace/lib/posix/src/stdio/scanf.c	(revision 7473807b2cbcf501c8b807c52295d1ef0e1e9f37)
@@ -61,5 +61,5 @@
 	_PROV_READY,
 	/** Cursor is temporarily lent to the external entity. No action is
-	  * possible until the cursor is returned.  */
+	 * possible until the cursor is returned.  */
 	_PROV_CURSOR_LENT,
 };
@@ -74,5 +74,5 @@
 	int fetched;
 	/** Elements are fetched from the source in batches (e.g. by getline())
-	  * to allow using strtol/strtod family even on streams. */
+	 * to allow using strtol/strtod family even on streams. */
 	char *window;
 	/** Size of the current window. */
@@ -84,22 +84,22 @@
 
 	/** Take control over data source. Finish initialization of the internal
-	  * structures (e.g. allocation of window). */
+	 * structures (e.g. allocation of window). */
 	void (*capture)(struct __input_provider *);
 	/** Get a single element from the source and update the internal structures
-	  * accordingly (e.g. greedy update of the window). Return -1 if the
-	  * element cannot be obtained. */
+	 * accordingly (e.g. greedy update of the window). Return -1 if the
+	 * element cannot be obtained. */
 	int (*pop)(struct __input_provider *);
 	/** Undo the most recent not-undone pop operation. Might be necesarry to
-	  * flush current window and seek data source backwards. Return 0 if the
-	  * pop history is exhausted, non-zero on success. */
+	 * flush current window and seek data source backwards. Return 0 if the
+	 * pop history is exhausted, non-zero on success. */
 	int (*undo)(struct __input_provider *);
 	/** Lend the cursor to the caller.  */
 	const char *(*borrow_cursor)(struct __input_provider *);
 	/** Take control over possibly incremented cursor and update the internal
-	  * structures if necessary. */
+	 * structures if necessary. */
 	void (*return_cursor)(struct __input_provider *, const char *);
 	/** Release the control over the source. That is, synchronize any
-	  * fetched but non-consumed elements (e.g. by seeking) and destruct
-	  * internal structures (e.g. window deallocation). */
+	 * fetched but non-consumed elements (e.g. by seeking) and destruct
+	 * internal structures (e.g. window deallocation). */
 	void (*release)(struct __input_provider *);
 } _input_provider;
@@ -411,6 +411,7 @@
 		*base = 10;
 		return 1;
-	case 'p': /* According to POSIX, %p modifier is implementation defined but
-			   * must correspond to its printf counterpart. */
+	case 'p':
+		/* According to POSIX, %p modifier is implementation defined but
+		 * must correspond to its printf counterpart. */
 	case 'x':
 	case 'X':
