Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Visual Studio occasionally tells me:

The line endings in the following files are not consistent. Do you want to normalize the line endings?

It then gives me a drop down with different standards or something, such as Windows, Mac, Unix, and a couple of Unicode ones.

What does this mean and what is going to happen if I click Yes?

share|improve this question
Visual Studio shows me this same message, but the "file" it refers to is in fact a folder! What does that mean?! – Colonel Panic Oct 5 '12 at 8:28
I made a little utility to do this to an entire directory or recursively through a set of directories for all files of a particular extension (like *.c or *.h), although I use Delphi, the utility works for any Windows source code files. Source code included plus binary (exe). It will report which lines have extra linefeeds (ie missing carriage returns) or extra carriage returns (ie missing linefeeds). docs.google.com/file/d/0B07SrKpE8ErmbHZ1SWkxT3RLczA/… – Warren P Apr 25 at 18:55

8 Answers

up vote 39 down vote accepted

What that usually means is that you have lines ending with something other than a carriage return/line feed pair. It often happens when you copy and paste from a web page into the code editor.

Since you're developing in Visual Studio, you'll obviously want to choose "Windows" from the drop down. :-)

share|improve this answer
1  
how does the line end without a carriage return... ? – ioSamurai Feb 16 '09 at 15:03
1  
With just a line feed. – user64075 Feb 16 '09 at 15:04
Ryan, a line feed is just a non-printable char value (you can't see it). A valid end of line in Windows is a two char pair (ASCII 13 for carriage return, 10 for line feed - 0x0D 0x0A in hex). As monowerker said below, different OSes use different line endings. – Ken White Feb 16 '09 at 15:15
6  
So why the flip does visual studio care how the lines end, it apparently recognizes all the different types, it should just be happy and shut up. – ioSamurai Feb 16 '09 at 16:10
13  
Ah, but what if you're just using VS to fix something that isn't for Windows? Quick fix on a Linux utility or something that's straight C/C++, and you don't want CRLFs added? Wait-now you want MS to read your mind and know which to use? <g> The VS team is wrong either way, aren't they? Sheesh! – Ken White Feb 21 '09 at 13:53
show 3 more comments

If you are using VS 2012: Go to

>File
>>advanced save options
>>> select- line endings type as -Windows
share|improve this answer
That option does not appear on my File menu for my Visual Studio 2010 Ultimate Version 10.0.40219.1 SP1Rel. – DOK Jul 11 '12 at 12:56
1  
@DOK, on my File menu at Visual Studio 2010 Premium version it does!! – Peter Jul 20 '12 at 7:47
If you can't see the option you can customise your file menu by going to Tools->Customise, going to the commands tab and adding a command. – Rob Apr 24 at 9:00

Some lines end with \n
Some other lines end with \r\n
VS suggests you to make all lines end the same.

share|improve this answer

The file you are editing has been edited with some other editor that does not use the same line endings resulting in a file with mixed line endings.

The ASCII characters in use for line endings are:

CR, Carriage Return
LF, Line Feed

Windows = CRLF
Mac OS 9 or earlier = CR
Unix = LF

share|improve this answer

The Wikipedia article on this might help you out

share|improve this answer

It means that, for example, some of your lines of text with a <Carriage Return><Linefeed> (the Windows standard), and some end with just a <Linefeed> (the Unix standard).

If you click 'yes' these the end-of-lines in your source file will be converted to have all the same format.

This won't make any difference to the compiler (because end-of-lines count as mere whitespace), but it might make some difference to other tools (e.g. the 'diff' on your version control system).

share|improve this answer

There'a an add-in for Visual Studio 2008 that converts the end of line format when a file is saved. You can download it here: http://grebulon.com/software/stripem.php

share|improve this answer
This can help when you get the "inconsistent line endings" error from svn. – kgriffs Oct 5 '10 at 15:43

It's not just VS... it'd be any tools that read the files... compilers, linkers, ... that would have to be able to handle it. In general (for software development) we accept the multiplatform line ending issue but let the version control software deal with it.

share|improve this answer
1  
I agree. Best to let your SCM system do it. If you are using svn, see also stackoverflow.com/questions/15687/… – kgriffs Oct 5 '10 at 15:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.